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
5from __future__ import annotations
6
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)
20
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]