Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1 year ago
123456789101112131415161718192021222324252627282930313233
  1. # This file is dual licensed under the terms of the Apache License, Version
  2. # 2.0, and the BSD License. See the LICENSE file in the root of this repository
  3. # for complete details.
  4. from __future__ import annotations
  5. from cryptography.hazmat._oid import (
  6. AttributeOID,
  7. AuthorityInformationAccessOID,
  8. CertificatePoliciesOID,
  9. CRLEntryExtensionOID,
  10. ExtendedKeyUsageOID,
  11. ExtensionOID,
  12. NameOID,
  13. ObjectIdentifier,
  14. OCSPExtensionOID,
  15. SignatureAlgorithmOID,
  16. SubjectInformationAccessOID,
  17. )
  18. __all__ = [
  19. "AttributeOID",
  20. "AuthorityInformationAccessOID",
  21. "CRLEntryExtensionOID",
  22. "CertificatePoliciesOID",
  23. "ExtendedKeyUsageOID",
  24. "ExtensionOID",
  25. "NameOID",
  26. "OCSPExtensionOID",
  27. "ObjectIdentifier",
  28. "SignatureAlgorithmOID",
  29. "SubjectInformationAccessOID",
  30. ]