Searched refs:mspki (Results 1 – 4 of 4) sorted by relevance
/third_party/openssl/doc/man3/ |
D | SSL_CTX_dane_enable.pod | 22 int SSL_get0_dane_authority(SSL *s, X509 **mcert, EVP_PKEY **mspki); 113 element of the chain, then that key is returned via B<mspki> argument (if not 304 EVP_PKEY *mspki = NULL; 306 int depth = SSL_get0_dane_authority(ssl, NULL, &mspki); 310 (mspki != NULL) ? "TA public key verified certificate" :
|
/third_party/openssl/apps/ |
D | s_cb.c | 1152 EVP_PKEY *mspki; in print_verify_detail() local 1167 if ((mdpth = SSL_get0_dane_authority(s, NULL, &mspki)) >= 0) { in print_verify_detail() 1190 (mspki != NULL) ? "signed the certificate" : in print_verify_detail()
|
/third_party/openssl/ssl/ |
D | ssl_lib.c | 1067 int SSL_get0_dane_authority(SSL *s, X509 **mcert, EVP_PKEY **mspki) in SSL_get0_dane_authority() argument 1076 if (mspki) in SSL_get0_dane_authority() 1077 *mspki = (dane->mcert == NULL) ? dane->mtlsa->spki : NULL; in SSL_get0_dane_authority()
|
/third_party/openssl/include/openssl/ |
D | ssl.h | 1745 __owur int SSL_get0_dane_authority(SSL *s, X509 **mcert, EVP_PKEY **mspki);
|