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.
 
 
 
 

38 lines
931 B

  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. OtherNameFormOID,
  16. PublicKeyAlgorithmOID,
  17. SignatureAlgorithmOID,
  18. SubjectInformationAccessOID,
  19. )
  20. __all__ = [
  21. "AttributeOID",
  22. "AuthorityInformationAccessOID",
  23. "CRLEntryExtensionOID",
  24. "CertificatePoliciesOID",
  25. "ExtendedKeyUsageOID",
  26. "ExtensionOID",
  27. "NameOID",
  28. "OCSPExtensionOID",
  29. "ObjectIdentifier",
  30. "OtherNameFormOID",
  31. "PublicKeyAlgorithmOID",
  32. "SignatureAlgorithmOID",
  33. "SubjectInformationAccessOID",
  34. ]