Lines Matching refs:cert
76 sunw_use_x509cert(SSL_CTX *ctx, X509 *cert) in sunw_use_x509cert() argument
80 if (ctx == NULL || cert == NULL) { in sunw_use_x509cert()
85 if (SSL_CTX_use_certificate(ctx, cert) != 1) { in sunw_use_x509cert()
197 X509 *cert = NULL; in sunw_p12_use_certfile() local
209 &cert, NULL); in sunw_p12_use_certfile()
210 if (ret > 0 && cert != NULL) { in sunw_p12_use_certfile()
211 if (sunw_use_x509cert(ctx, cert) == -1) { in sunw_p12_use_certfile()
223 if (ret == -1 && cert != NULL) { in sunw_p12_use_certfile()
224 X509_free(cert); in sunw_p12_use_certfile()
225 cert = NULL; in sunw_p12_use_certfile()
411 EVP_PKEY **pkey, X509 **cert, STACK_OF(X509) **ca) in p12_doparse() argument
426 pkey, cert, ca); in p12_doparse()