Home
last modified time | relevance | path

Searched refs:cert_id (Results 1 – 13 of 13) sorted by relevance

/external/python/asn1crypto/tests/
Dtest_ocsp.py73 cert_id = single_response['cert_id']
110 cert_id['hash_algorithm']['algorithm'].native
114 cert_id['hash_algorithm']['parameters'].native
118 cert_id['issuer_name_hash'].native
122 cert_id['issuer_key_hash'].native
126 cert_id['serial_number'].native
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Docsp.py39 def _issuer_key_hash(backend, cert_id): argument
43 key_hash, backend._ffi.NULL, cert_id
50 def _issuer_name_hash(backend, cert_id): argument
54 backend._ffi.NULL, backend._ffi.NULL, cert_id
61 def _serial_number(backend, cert_id): argument
65 backend._ffi.NULL, num, cert_id
72 def _hash_algorithm(backend, cert_id): argument
76 backend._ffi.NULL, backend._ffi.NULL, cert_id
/external/wpa_supplicant_8/wpa_supplicant/examples/
DopenCryptoki.conf35 cert_id="4"
/external/wpa_supplicant_8/src/eap_peer/
Deap_config.h279 char *cert_id; member
Deap_tls_common.c126 params->cert_id = config->cert_id; in eap_tls_cert_params_from_conf()
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl.c1206 const char *cert_id, const char *ca_cert_id) in tls_engine_init() argument
1287 if (cert_id || ca_cert_id) { in tls_engine_init()
3618 const char *cert_id, in tls_engine_get_cert() argument
3623 const char *cert_id; in tls_engine_get_cert() member
3626 params.cert_id = cert_id; in tls_engine_get_cert()
3634 " '%s' [%s]", cert_id, in tls_engine_get_cert()
3642 " '%s'", cert_id); in tls_engine_get_cert()
3652 const char *cert_id) in tls_connection_engine_client_cert() argument
3657 if (tls_engine_get_cert(conn, cert_id, &cert)) in tls_connection_engine_client_cert()
5096 const char *cert_id = params->cert_id; in tls_connection_set_params() local
[all …]
Dtls.h209 const char *cert_id; member
/external/webrtc/pc/
Dstats_collector_unittest.cc197 StatsReport::Id IdFromCertIdString(const std::string& cert_id) { in IdFromCertIdString() argument
198 return TypedIdFromIdString(StatsReport::kStatsReportTypeCertificate, cert_id); in IdFromCertIdString()
282 StatsReport::Id cert_id; in CheckCertChainReports() local
313 cert_id = IdFromCertIdString(issuer_id); in CheckCertChainReports()
314 certificate_id = &cert_id; in CheckCertChainReports()
/external/wpa_supplicant_8/wpa_supplicant/
Dconfig.c2478 { STRe(cert_id, cert.cert_id) },
2483 { STRe(cert_id2, phase2_cert.cert_id) },
2503 { STRe(machine_cert_id, machine_cert.cert_id) },
2764 os_free(cert->cert_id); in eap_peer_config_free_cert()
Dconfig_winreg.c927 STR(cert_id); in wpa_config_write_network()
Dconfig_file.c736 STR(cert_id); in wpa_config_write_network()
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc9401 static bool ocsp_cert_id_matches_certificate(CBS* cert_id, X509* x509, X509* issuerX509) { in ocsp_cert_id_matches_certificate() argument
9404 if (!CBS_get_asn1(cert_id, &hash_algorithm, CBS_ASN1_SEQUENCE) || in ocsp_cert_id_matches_certificate()
9411 if (!CBS_get_asn1(cert_id, &issuer_name_hash, CBS_ASN1_OCTETSTRING)) { in ocsp_cert_id_matches_certificate()
9417 if (!CBS_get_asn1(cert_id, &issuer_key_hash, CBS_ASN1_OCTETSTRING)) { in ocsp_cert_id_matches_certificate()
9423 if (!CBS_get_asn1(cert_id, &serial, CBS_ASN1_INTEGER)) { in ocsp_cert_id_matches_certificate()
9487 CBS cert_id; in find_ocsp_single_response() local
9488 if (!CBS_get_asn1(&single_response, &cert_id, CBS_ASN1_SEQUENCE)) { in find_ocsp_single_response()
9493 if (ocsp_cert_id_matches_certificate(&cert_id, x509, issuerX509)) { in find_ocsp_single_response()
/external/curl/lib/vtls/
Dopenssl.c777 const char *cert_id; in cert_stuff() member
781 params.cert_id = cert_file; in cert_stuff()