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