Searched refs:x509_asn (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Modules/ |
D | _ssl.c | 3755 static PyObject *x509_asn = NULL; in certEncodingType() local 3758 if (x509_asn == NULL) { in certEncodingType() 3759 x509_asn = PyString_InternFromString("x509_asn"); in certEncodingType() 3760 if (x509_asn == NULL) in certEncodingType() 3770 Py_INCREF(x509_asn); in certEncodingType() 3771 return x509_asn; in certEncodingType()
|
/external/python/cpython3/Modules/ |
D | _ssl.c | 5550 static PyObject *x509_asn = NULL; in certEncodingType() local 5553 if (x509_asn == NULL) { in certEncodingType() 5554 x509_asn = PyUnicode_InternFromString("x509_asn"); in certEncodingType() 5555 if (x509_asn == NULL) in certEncodingType() 5565 Py_INCREF(x509_asn); in certEncodingType() 5566 return x509_asn; in certEncodingType()
|
/external/python/cpython2/Doc/library/ |
D | ssl.rst | 485 :const:`x509_asn` for X.509 ASN.1 data or :const:`pkcs_7_asn` for 493 [(b'data...', 'x509_asn', {'1.3.6.1.5.5.7.3.1', '1.3.6.1.5.5.7.3.2'}), 494 (b'data...', 'x509_asn', True)] 508 :const:`x509_asn` for X.509 ASN.1 data or :const:`pkcs_7_asn` for
|
/external/python/cpython3/Doc/library/ |
D | ssl.rst | 484 :const:`x509_asn` for X.509 ASN.1 data or :const:`pkcs_7_asn` for 492 [(b'data...', 'x509_asn', {'1.3.6.1.5.5.7.3.1', '1.3.6.1.5.5.7.3.2'}), 493 (b'data...', 'x509_asn', True)] 507 :const:`x509_asn` for X.509 ASN.1 data or :const:`pkcs_7_asn` for
|