oid.py 794 B

1234567891011121314151617181920212223242526272829303132
  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 cryptography.hazmat._oid import (
  5. AttributeOID,
  6. AuthorityInformationAccessOID,
  7. CRLEntryExtensionOID,
  8. CertificatePoliciesOID,
  9. ExtendedKeyUsageOID,
  10. ExtensionOID,
  11. NameOID,
  12. OCSPExtensionOID,
  13. ObjectIdentifier,
  14. SignatureAlgorithmOID,
  15. SubjectInformationAccessOID,
  16. )
  17. __all__ = [
  18. "AttributeOID",
  19. "AuthorityInformationAccessOID",
  20. "CRLEntryExtensionOID",
  21. "CertificatePoliciesOID",
  22. "ExtendedKeyUsageOID",
  23. "ExtensionOID",
  24. "NameOID",
  25. "OCSPExtensionOID",
  26. "ObjectIdentifier",
  27. "SignatureAlgorithmOID",
  28. "SubjectInformationAccessOID",
  29. ]