Home
last modified time | relevance | path

Searched refs:byKey (Results 1 – 10 of 10) sorted by relevance

/freebsd-12-stable/crypto/openssl/crypto/ocsp/
Docsp_srv.c264 ASN1_OCTET_STRING *byKey = NULL; in OCSP_RESPID_set_by_key() local
271 byKey = ASN1_OCTET_STRING_new(); in OCSP_RESPID_set_by_key()
272 if (byKey == NULL) in OCSP_RESPID_set_by_key()
275 if (!(ASN1_OCTET_STRING_set(byKey, md, SHA_DIGEST_LENGTH))) { in OCSP_RESPID_set_by_key()
276 ASN1_OCTET_STRING_free(byKey); in OCSP_RESPID_set_by_key()
281 respid->value.byKey = byKey; in OCSP_RESPID_set_by_key()
291 if (respid->value.byKey == NULL) in OCSP_RESPID_match()
298 return (ASN1_STRING_length(respid->value.byKey) == SHA_DIGEST_LENGTH) in OCSP_RESPID_match()
299 && (memcmp(ASN1_STRING_get0_data(respid->value.byKey), md, in OCSP_RESPID_match()
Docsp_cl.c220 *pid = rid->value.byKey; in OCSP_resp_get0_id()
238 *pid = ASN1_OCTET_STRING_dup(rid->value.byKey); in OCSP_resp_get1_id()
Docsp_local.h102 ASN1_OCTET_STRING *byKey; member
Docsp_vfy.c183 if (id->value.byKey->length != SHA_DIGEST_LENGTH) in ocsp_find_signer_sk()
185 keyhash = id->value.byKey->data; in ocsp_find_signer_sk()
Docsp_asn.c73 ASN1_EXP(OCSP_RESPID, value.byKey, ASN1_OCTET_STRING, 2)
Docsp_prn.c177 i2a_ASN1_STRING(bp, rid->value.byKey, 0); in OCSP_RESPONSE_print()
/freebsd-12-stable/contrib/wpa/src/crypto/
Dtls_openssl_ocsp.c94 ASN1_OCTET_STRING *byKey; member
178 ASN1_EXP(ResponderID, value.byKey, ASN1_OCTET_STRING, 2)
282 i2a_ASN1_STRING(out, rid->value.byKey, V_ASN1_OCTET_STRING); in responderid_str()
471 if (rid->value.byKey->length != SHA_DIGEST_LENGTH) in ocsp_find_signer()
477 if (os_memcmp(rid->value.byKey->data, hash, in ocsp_find_signer()
/freebsd-12-stable/crypto/heimdal/lib/hx509/
Docsp.asn177 byKey [2] OCSPKeyHash }
Drevoke.c198 q.keyhash_sha1 = &ocsp->ocsp.tbsResponseData.responderID.u.byKey; in verify_ocsp()
1116 hex_encode(ocsp.ocsp.tbsResponseData.responderID.u.byKey.data, in hx509_revoke_ocsp_print()
1117 ocsp.ocsp.tbsResponseData.responderID.u.byKey.length, in hx509_revoke_ocsp_print()
DChangeLog2105 * revoke.c: Support OCSPResponderID.byKey, indent.