您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

38 行
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. ]