Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/cryptography/x509/oid.py: 100%
2 statements
« prev ^ index » next coverage.py v7.0.1, created at 2022-12-25 06:11 +0000
« prev ^ index » next coverage.py v7.0.1, created at 2022-12-25 06:11 +0000
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.
5from cryptography.hazmat._oid import (
6 AttributeOID,
7 AuthorityInformationAccessOID,
8 CRLEntryExtensionOID,
9 CertificatePoliciesOID,
10 ExtendedKeyUsageOID,
11 ExtensionOID,
12 NameOID,
13 OCSPExtensionOID,
14 ObjectIdentifier,
15 SignatureAlgorithmOID,
16 SubjectInformationAccessOID,
17)
20__all__ = [
21 "AttributeOID",
22 "AuthorityInformationAccessOID",
23 "CRLEntryExtensionOID",
24 "CertificatePoliciesOID",
25 "ExtendedKeyUsageOID",
26 "ExtensionOID",
27 "NameOID",
28 "OCSPExtensionOID",
29 "ObjectIdentifier",
30 "SignatureAlgorithmOID",
31 "SubjectInformationAccessOID",
32]