Home
last modified time | relevance | path

Searched refs:cadata (Results 1 – 10 of 10) sorted by relevance

/third_party/node/deps/npm/lib/config/
Dload-cafile.js10 function afterCARead (er, cadata) { argument
20 output = cadata
/third_party/python/Lib/
Dssl.py583 self.load_verify_locations(cadata=certs)
741 capath=None, cadata=None): argument
764 if cafile or capath or cadata:
765 context.load_verify_locations(cafile, capath, cadata)
781 cafile=None, capath=None, cadata=None): argument
818 if cafile or capath or cadata:
819 context.load_verify_locations(cafile, capath, cadata)
/third_party/python/Modules/clinic/
D_ssl.c.h575 PyObject *cadata);
587 PyObject *cadata = Py_None; in _ssl__SSLContext_load_verify_locations() local
608 cadata = args[2]; in _ssl__SSLContext_load_verify_locations()
610 return_value = _ssl__SSLContext_load_verify_locations_impl(self, cafile, capath, cadata); in _ssl__SSLContext_load_verify_locations()
/third_party/python/Lib/test/
Dtest_ssl.py1468 ctx.load_verify_locations(cadata=cacert_pem)
1470 ctx.load_verify_locations(cadata=neuronio_pem)
1473 ctx.load_verify_locations(cadata=neuronio_pem)
1479 ctx.load_verify_locations(cadata=combined)
1486 ctx.load_verify_locations(cadata="\n".join(combined))
1491 ctx.load_verify_locations(cadata=cacert_der)
1492 ctx.load_verify_locations(cadata=neuronio_der)
1495 ctx.load_verify_locations(cadata=cacert_der)
1501 ctx.load_verify_locations(cadata=combined)
1506 self.assertRaises(TypeError, ctx.load_verify_locations, cadata=object)
[all …]
/third_party/python/Modules/
D_ssl.c4015 PyObject *cadata) in _ssl__SSLContext_load_verify_locations_impl() argument
4027 if (cadata == Py_None) in _ssl__SSLContext_load_verify_locations_impl()
4028 cadata = NULL; in _ssl__SSLContext_load_verify_locations_impl()
4030 if (cafile == NULL && capath == NULL && cadata == NULL) { in _ssl__SSLContext_load_verify_locations_impl()
4051 if (cadata) { in _ssl__SSLContext_load_verify_locations_impl()
4052 if (PyUnicode_Check(cadata)) { in _ssl__SSLContext_load_verify_locations_impl()
4053 PyObject *cadata_ascii = PyUnicode_AsASCIIString(cadata); in _ssl__SSLContext_load_verify_locations_impl()
4069 else if (PyObject_CheckBuffer(cadata)) { in _ssl__SSLContext_load_verify_locations_impl()
4071 if (PyObject_GetBuffer(cadata, &buf, PyBUF_SIMPLE)) { in _ssl__SSLContext_load_verify_locations_impl()
/third_party/python/Doc/library/
Dssl.rst128 .. function:: create_default_context(purpose=Purpose.SERVER_AUTH, cafile=None, capath=None, cadata=…
135 *cafile*, *capath*, *cadata* represent optional CA certificates to
147 *cadata* is given) or uses :meth:`SSLContext.load_default_certs` to load
1591 .. method:: SSLContext.load_verify_locations(cafile=None, capath=None, cadata=None)
1611 The *cadata* object, if present, is either an ASCII string of one or more
1617 New optional argument *cadata*
/third_party/python/Misc/NEWS.d/
D3.10.0b1.rst625 consistent error message when cadata contains no valid certificate.
/third_party/python/Lib/test/test_asyncio/
Dtest_events.py608 cadata=None): argument
/third_party/python/Doc/whatsnew/
D3.4.rst1442 accepts a new optional argument *cadata*, which can be used to provide PEM or
/third_party/python/Misc/
DHISTORY3355 - Issue #18138: Implement cadata argument of SSLContext.load_verify_location()