Lines Matching refs:pem
6 The `asn1crypto.pem` module includes three functions:
19 from asn1crypto import pem, x509
23 if pem.detect(der_bytes):
24 _, _, der_bytes = pem.unarmor(der_bytes)
41 from asn1crypto import pem, x509
45 if pem.detect(der_bytes):
46 type_name, headers, der_bytes = pem.unarmor(der_bytes)
55 from asn1crypto import pem, x509
59 for type_name, headers, der_bytes in pem.unarmor(f.read(), multiple=True):
71 from asn1crypto import pem, x509
77 pem_bytes = pem.armor('CERTIFICATE', der_bytes)