Home
last modified time | relevance | path

Searched refs:ikey (Results 1 – 16 of 16) sorted by relevance

/third_party/openssl/crypto/rc4/asm/
Drc4-s390x.pl179 $ikey="%r7";
197 lghi $ikey,-256
203 llgc $acc,2+256($ikey,$key)
206 la $ikey,1($ikey)
210 tml $ikey,255
212 stc $dat,2+256-1($ikey,$key)
/third_party/node/deps/openssl/openssl/crypto/rc4/asm/
Drc4-s390x.pl179 $ikey="%r7";
197 lghi $ikey,-256
203 llgc $acc,2+256($ikey,$key)
206 la $ikey,1($ikey)
210 tml $ikey,255
212 stc $dat,2+256-1($ikey,$key)
/third_party/node/deps/openssl/openssl/crypto/ocsp/
Docsp_lib.c27 ASN1_BIT_STRING *ikey; in OCSP_cert_to_id() local
38 ikey = X509_get0_pubkey_bitstr(issuer); in OCSP_cert_to_id()
39 return OCSP_cert_id_new(dgst, iname, ikey, serial); in OCSP_cert_to_id()
/third_party/openssl/crypto/ocsp/
Docsp_lib.c27 ASN1_BIT_STRING *ikey; in OCSP_cert_to_id() local
38 ikey = X509_get0_pubkey_bitstr(issuer); in OCSP_cert_to_id()
39 return OCSP_cert_id_new(dgst, iname, ikey, serial); in OCSP_cert_to_id()
/third_party/mesa3d/src/gallium/auxiliary/cso_cache/
Dcso_cache.h174 unsigned hash = 0, *ikey = (unsigned *)key; in cso_construct_key() local
180 hash ^= ikey[i]; in cso_construct_key()
/third_party/mesa3d/src/mesa/program/
Dprog_cache.c62 const GLuint *ikey = (const GLuint *) key; in hash_key() local
69 for (i = 0; i < key_size / sizeof(*ikey); i++) in hash_key()
71 hash += ikey[i]; in hash_key()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Dtls_openssl_ocsp.c398 ASN1_BIT_STRING *ikey; in issuer_match() local
435 ikey = X509_get0_pubkey_bitstr(issuer); in issuer_match()
436 if (!ikey || in issuer_match()
437 !EVP_Digest(ikey->data, ikey->length, md, &len, dgst, NULL) || in issuer_match()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Dtls_openssl_ocsp.c398 ASN1_BIT_STRING *ikey; in issuer_match() local
435 ikey = X509_get0_pubkey_bitstr(issuer); in issuer_match()
436 if (!ikey || in issuer_match()
437 !EVP_Digest(ikey->data, ikey->length, md, &len, dgst, NULL) || in issuer_match()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
Dieee802_1x.c267 u8 *ikey; in ieee802_1x_tx_key() local
268 ikey = os_malloc(hapd->conf->individual_wep_key_len); in ieee802_1x_tx_key()
269 if (ikey == NULL || in ieee802_1x_tx_key()
270 random_get_bytes(ikey, hapd->conf->individual_wep_key_len)) in ieee802_1x_tx_key()
274 os_free(ikey); in ieee802_1x_tx_key()
279 ikey, hapd->conf->individual_wep_key_len); in ieee802_1x_tx_key()
281 ieee802_1x_tx_key_one(hapd, sta, 0, 0, ikey, in ieee802_1x_tx_key()
287 sta->addr, 0, 1, NULL, 0, ikey, in ieee802_1x_tx_key()
293 os_free(ikey); in ieee802_1x_tx_key()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
Dieee802_1x.c267 u8 *ikey; in ieee802_1x_tx_key() local
269 ikey = os_malloc(hapd->conf->individual_wep_key_len); in ieee802_1x_tx_key()
270 if (!ikey || in ieee802_1x_tx_key()
271 random_get_bytes(ikey, hapd->conf->individual_wep_key_len)) in ieee802_1x_tx_key()
275 os_free(ikey); in ieee802_1x_tx_key()
280 ikey, hapd->conf->individual_wep_key_len); in ieee802_1x_tx_key()
282 ieee802_1x_tx_key_one(hapd, sta, 0, 0, ikey, in ieee802_1x_tx_key()
288 sta->addr, 0, 0, 1, NULL, 0, ikey, in ieee802_1x_tx_key()
295 os_free(ikey); in ieee802_1x_tx_key()
/third_party/node/deps/v8/tools/
Dlocs.py394 def count_lines_of_unit(ikey): argument
395 i, key = ikey
/third_party/mbedtls/library/
Dconstant_time.c661 const unsigned char * const ikey = ctx->hmac_ctx; in mbedtls_ct_hmac() local
662 const unsigned char * const okey = ikey + block_size; in mbedtls_ct_hmac()
/third_party/openssl/apps/
Docsp.c935 ASN1_BIT_STRING *ikey; in add_ocsp_serial() local
947 ikey = X509_get0_pubkey_bitstr(issuer); in add_ocsp_serial()
953 id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno); in add_ocsp_serial()
/third_party/node/deps/openssl/openssl/apps/
Docsp.c935 ASN1_BIT_STRING *ikey; in add_ocsp_serial() local
947 ikey = X509_get0_pubkey_bitstr(issuer); in add_ocsp_serial()
953 id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno); in add_ocsp_serial()
/third_party/openssl/crypto/x509/
Dx509_vfy.c1529 EVP_PKEY *ikey = NULL; in check_crl() local
1582 ikey = X509_get0_pubkey(issuer); in check_crl()
1583 if (ikey == NULL && in check_crl()
1587 if (ikey != NULL) { in check_crl()
1588 int rv = X509_CRL_check_suiteb(crl, ikey, ctx->param->flags); in check_crl()
1593 if (X509_CRL_verify(crl, ikey) <= 0 && in check_crl()
/third_party/node/deps/openssl/openssl/crypto/x509/
Dx509_vfy.c1529 EVP_PKEY *ikey = NULL; in check_crl() local
1582 ikey = X509_get0_pubkey(issuer); in check_crl()
1583 if (ikey == NULL && in check_crl()
1587 if (ikey != NULL) { in check_crl()
1588 int rv = X509_CRL_check_suiteb(crl, ikey, ctx->param->flags); in check_crl()
1593 if (X509_CRL_verify(crl, ikey) <= 0 && in check_crl()