Lines Matching defs:cert
28 * sunw_p12_use_certfile - gets the user's cert from a pkcs12 file & pass
69 * cert - Certificate to pass in x509 format
76 sunw_use_x509cert(SSL_CTX *ctx, X509 *cert)
80 if (ctx == NULL || cert == NULL) {
85 if (SSL_CTX_use_certificate(ctx, cert) != 1) {
182 * passphrase to decrypt it. Pass the cert to SSL.
197 X509 *cert = NULL;
209 &cert, NULL);
210 if (ret > 0 && cert != NULL) {
211 if (sunw_use_x509cert(ctx, cert) == -1) {
223 if (ret == -1 && cert != NULL) {
224 X509_free(cert);
225 cert = NULL;
236 * passphrase to decrypt it. Pass the cert to SSL.
294 * passphrase to decrypt it. Pass the cert to SSL.
401 * cert - Points at pointer to client certificate structure
411 EVP_PKEY **pkey, X509 **cert, STACK_OF(X509) **ca)
426 pkey, cert, ca);