/external/openssl/crypto/ocsp/ |
ocsp_lib.c | 80 ASN1_BIT_STRING *ikey; local 94 ikey = X509_get0_pubkey_bitstr(issuer); 95 return OCSP_cert_id_new(dgst, iname, ikey, serial);
|
/external/iproute2/ip/ |
link_gre.c | 56 unsigned ikey = 0; local 101 ikey = *(__u32 *)RTA_DATA(greinfo[IFLA_GRE_IKEY]); 150 ikey = okey = uval; 151 } else if (!matches(*argv, "ikey")) { 160 fprintf(stderr, "invalid value of \"ikey\"\n"); 165 ikey = uval; 241 if (!ikey && IN_MULTICAST(ntohl(daddr))) { 242 ikey = daddr; 254 addattr32(n, 1024, IFLA_GRE_IKEY, ikey); 337 fprintf(f, "ikey %s ", s2) [all...] |
/external/bluetooth/glib/tests/ |
hash-test.c | 393 gpointer ikey, ivalue; local 422 g_assert (g_hash_table_iter_next (&iter, &ikey, &ivalue)); 424 handle_pair (ikey, ivalue, result_array); 429 g_assert (! g_hash_table_iter_next (&iter, &ikey, &ivalue));
|
/external/openssl/apps/ |
ocsp.c | 959 ASN1_BIT_STRING *ikey; local 969 ikey = X509_get0_pubkey_bitstr(issuer); 976 id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno); [all...] |
/external/wpa_supplicant_8/src/ap/ |
ieee802_1x.c | 321 u8 *ikey; local 322 ikey = os_malloc(hapd->conf->individual_wep_key_len); 323 if (ikey == NULL || 324 random_get_bytes(ikey, hapd->conf->individual_wep_key_len)) 328 os_free(ikey); 333 ikey, hapd->conf->individual_wep_key_len); 335 ieee802_1x_tx_key_one(hapd, sta, 0, 0, ikey, 341 sta->addr, 0, 1, NULL, 0, ikey, 347 os_free(ikey); [all...] |
/external/openssl/crypto/x509/ |
x509_vfy.c | 1341 EVP_PKEY *ikey = NULL; local [all...] |
/system/vold/ |
cryptfs.c | 482 static void pbkdf2(char *passwd, unsigned char *salt, unsigned char *ikey) 486 HASH_COUNT, KEY_LEN_BYTES+IV_LEN_BYTES, ikey); 493 unsigned char ikey[32+32] = { 0 }; /* Big enough to hold a 256 bit key and 256 bit IV */ local 498 pbkdf2(passwd, salt, ikey); 501 if (! EVP_EncryptInit(&e_ctx, EVP_aes_128_cbc(), ikey, ikey+KEY_LEN_BYTES)) { 530 unsigned char ikey[32+32] = { 0 }; /* Big enough to hold a 256 bit key and 256 bit IV */ local 535 pbkdf2(passwd, salt, ikey); 538 if (! EVP_DecryptInit(&d_ctx, EVP_aes_128_cbc(), ikey, ikey+KEY_LEN_BYTES)) [all...] |