mirror of
				https://gitlab.sectorq.eu/jaydee/omv_backup.git
				synced 2025-10-31 10:31:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			885 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			885 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| # This file is dual licensed under the terms of the Apache License, Version
 | |
| # 2.0, and the BSD License. See the LICENSE file in the root of this repository
 | |
| # for complete details.
 | |
| 
 | |
| from __future__ import annotations
 | |
| 
 | |
| from cryptography.hazmat._oid import (
 | |
|     AttributeOID,
 | |
|     AuthorityInformationAccessOID,
 | |
|     CertificatePoliciesOID,
 | |
|     CRLEntryExtensionOID,
 | |
|     ExtendedKeyUsageOID,
 | |
|     ExtensionOID,
 | |
|     NameOID,
 | |
|     ObjectIdentifier,
 | |
|     OCSPExtensionOID,
 | |
|     PublicKeyAlgorithmOID,
 | |
|     SignatureAlgorithmOID,
 | |
|     SubjectInformationAccessOID,
 | |
| )
 | |
| 
 | |
| __all__ = [
 | |
|     "AttributeOID",
 | |
|     "AuthorityInformationAccessOID",
 | |
|     "CRLEntryExtensionOID",
 | |
|     "CertificatePoliciesOID",
 | |
|     "ExtendedKeyUsageOID",
 | |
|     "ExtensionOID",
 | |
|     "NameOID",
 | |
|     "OCSPExtensionOID",
 | |
|     "ObjectIdentifier",
 | |
|     "PublicKeyAlgorithmOID",
 | |
|     "SignatureAlgorithmOID",
 | |
|     "SubjectInformationAccessOID",
 | |
| ]
 | 
