Home
last modified time | relevance | path

Searched refs:verify_cb (Results 1 – 5 of 5) sorted by relevance

/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
Dsslproxy_test.py32 def __init__(self, ca_cert_path, verify_cb, port, host_name='foo.com', argument
35 self.verify_cb = verify_cb
44 context.set_verify(certutils.VERIFY_PEER, self.verify_cb) # Demand a cert
154 def verify_cb(self, conn, cert, errnum, depth, ok): member in TestClient
173 c = Client(self.cert_path, self.verify_cb, server.server_port, '')
178 c = Client(self.cert_path, self.verify_cb, server.server_port, 'foo.com')
181 c = Client(self.cert_path, self.verify_cb, server.server_port,
187 c = Client(self.wrong_cert_path, self.verify_cb, server.server_port,
Dcertutils.py149 def verify_cb(conn, cert, errnum, depth, ok): function
155 context.set_verify(SSL.VERIFY_PEER, verify_cb) # Demand a certificate
/external/boringssl/src/crypto/x509/
Dx509_vfy.c215 cb=ctx->verify_cb; in X509_verify_cert()
490 return ctx->verify_cb(0, ctx); in check_issued()
520 cb=ctx->verify_cb; in check_chain_extensions()
693 if (!ctx->verify_cb(0,ctx)) in check_name_constraints()
707 return ctx->verify_cb(0, ctx); in check_id_error()
755 cb=ctx->verify_cb; in check_trust()
852 ok = ctx->verify_cb(0, ctx); in check_cert()
890 ok = ctx->verify_cb(0, ctx); in check_cert()
922 if (!ctx->verify_cb(0, ctx)) in check_crl_time()
931 if (!ctx->verify_cb(0, ctx)) in check_crl_time()
[all …]
Dx509_lu.c724 int (*verify_cb)(int, X509_STORE_CTX *)) in X509_STORE_set_verify_cb()
726 ctx->verify_cb = verify_cb; in X509_STORE_set_verify_cb()
/external/boringssl/src/include/openssl/
Dx509_vfy.h195 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */ member
211 #define X509_STORE_set_verify_cb_func(ctx,func) ((ctx)->verify_cb=(func))
243 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */ member
444 int (*verify_cb)(int, X509_STORE_CTX *));
525 int (*verify_cb)(int, X509_STORE_CTX *));