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.2.2, created at 2023-03-26 06:36 +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. 

4 

5from cryptography.hazmat._oid import ( 

6 AttributeOID, 

7 AuthorityInformationAccessOID, 

8 CertificatePoliciesOID, 

9 CRLEntryExtensionOID, 

10 ExtendedKeyUsageOID, 

11 ExtensionOID, 

12 NameOID, 

13 ObjectIdentifier, 

14 OCSPExtensionOID, 

15 SignatureAlgorithmOID, 

16 SubjectInformationAccessOID, 

17) 

18 

19__all__ = [ 

20 "AttributeOID", 

21 "AuthorityInformationAccessOID", 

22 "CRLEntryExtensionOID", 

23 "CertificatePoliciesOID", 

24 "ExtendedKeyUsageOID", 

25 "ExtensionOID", 

26 "NameOID", 

27 "OCSPExtensionOID", 

28 "ObjectIdentifier", 

29 "SignatureAlgorithmOID", 

30 "SubjectInformationAccessOID", 

31]