oid.py 885 B

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