Home
last modified time | relevance | path

Searched refs:hmac_key (Results 1 – 12 of 12) sorted by relevance

/third_party/openssl/crypto/evp/
De_rc4_hmac_md5.c185 unsigned char hmac_key[64]; in rc4_hmac_md5_ctrl() local
187 memset(hmac_key, 0, sizeof(hmac_key)); in rc4_hmac_md5_ctrl()
189 if (arg > (int)sizeof(hmac_key)) { in rc4_hmac_md5_ctrl()
192 MD5_Final(hmac_key, &key->head); in rc4_hmac_md5_ctrl()
194 memcpy(hmac_key, ptr, arg); in rc4_hmac_md5_ctrl()
197 for (i = 0; i < sizeof(hmac_key); i++) in rc4_hmac_md5_ctrl()
198 hmac_key[i] ^= 0x36; /* ipad */ in rc4_hmac_md5_ctrl()
200 MD5_Update(&key->head, hmac_key, sizeof(hmac_key)); in rc4_hmac_md5_ctrl()
202 for (i = 0; i < sizeof(hmac_key); i++) in rc4_hmac_md5_ctrl()
203 hmac_key[i] ^= 0x36 ^ 0x5c; /* opad */ in rc4_hmac_md5_ctrl()
[all …]
De_aes_cbc_hmac_sha1.c777 unsigned char hmac_key[64]; in aesni_cbc_hmac_sha1_ctrl() local
779 memset(hmac_key, 0, sizeof(hmac_key)); in aesni_cbc_hmac_sha1_ctrl()
781 if (arg > (int)sizeof(hmac_key)) { in aesni_cbc_hmac_sha1_ctrl()
784 SHA1_Final(hmac_key, &key->head); in aesni_cbc_hmac_sha1_ctrl()
786 memcpy(hmac_key, ptr, arg); in aesni_cbc_hmac_sha1_ctrl()
789 for (i = 0; i < sizeof(hmac_key); i++) in aesni_cbc_hmac_sha1_ctrl()
790 hmac_key[i] ^= 0x36; /* ipad */ in aesni_cbc_hmac_sha1_ctrl()
792 SHA1_Update(&key->head, hmac_key, sizeof(hmac_key)); in aesni_cbc_hmac_sha1_ctrl()
794 for (i = 0; i < sizeof(hmac_key); i++) in aesni_cbc_hmac_sha1_ctrl()
795 hmac_key[i] ^= 0x36 ^ 0x5c; /* opad */ in aesni_cbc_hmac_sha1_ctrl()
[all …]
De_aes_cbc_hmac_sha256.c755 unsigned char hmac_key[64]; in aesni_cbc_hmac_sha256_ctrl() local
757 memset(hmac_key, 0, sizeof(hmac_key)); in aesni_cbc_hmac_sha256_ctrl()
762 if (u_arg > sizeof(hmac_key)) { in aesni_cbc_hmac_sha256_ctrl()
765 SHA256_Final(hmac_key, &key->head); in aesni_cbc_hmac_sha256_ctrl()
767 memcpy(hmac_key, ptr, arg); in aesni_cbc_hmac_sha256_ctrl()
770 for (i = 0; i < sizeof(hmac_key); i++) in aesni_cbc_hmac_sha256_ctrl()
771 hmac_key[i] ^= 0x36; /* ipad */ in aesni_cbc_hmac_sha256_ctrl()
773 SHA256_Update(&key->head, hmac_key, sizeof(hmac_key)); in aesni_cbc_hmac_sha256_ctrl()
775 for (i = 0; i < sizeof(hmac_key); i++) in aesni_cbc_hmac_sha256_ctrl()
776 hmac_key[i] ^= 0x36 ^ 0x5c; /* opad */ in aesni_cbc_hmac_sha256_ctrl()
[all …]
/third_party/nghttp2/src/
Dshrpx_config_test.cc188 CU_ASSERT(std::equal(std::begin(key->data.hmac_key), in test_shrpx_config_read_tls_ticket_key_file()
189 std::begin(key->data.hmac_key) + 16, in test_shrpx_config_read_tls_ticket_key_file()
198 CU_ASSERT(std::equal(std::begin(key->data.hmac_key), in test_shrpx_config_read_tls_ticket_key_file()
199 std::begin(key->data.hmac_key) + 16, in test_shrpx_config_read_tls_ticket_key_file()
234 CU_ASSERT(std::equal(std::begin(key->data.hmac_key), in test_shrpx_config_read_tls_ticket_key_file_aes_256()
235 std::end(key->data.hmac_key), in test_shrpx_config_read_tls_ticket_key_file_aes_256()
244 CU_ASSERT(std::equal(std::begin(key->data.hmac_key), in test_shrpx_config_read_tls_ticket_key_file_aes_256()
245 std::end(key->data.hmac_key), in test_shrpx_config_read_tls_ticket_key_file_aes_256()
Dshrpx_worker_process.cc189 assert(ticket_key.hmac_keylen <= ticket_key.data.hmac_key.size()); in generate_ticket_key()
360 std::copy_n(p, hmac_keylen, std::begin(key.data.hmac_key)); in memcached_get_ticket_key_cb()
Dshrpx_tls.cc510 HMAC_Init_ex(hctx, key.data.hmac_key.data(), key.hmac_keylen, key.hmac, in ticket_key_cb()
538 HMAC_Init_ex(hctx, key.data.hmac_key.data(), key.hmac_keylen, key.hmac, in ticket_key_cb()
Dshrpx_config.h539 std::array<uint8_t, 32> hmac_key; member
Dshrpx_config.cc224 std::copy_n(p, hmac_keylen, std::begin(key.data.hmac_key)); in read_tls_ticket_key_file()
/third_party/openssl/apps/
Ddgst.c91 char *hmac_key = NULL; in dgst_main() local
179 hmac_key = "etaonrishdlcupfm"; in dgst_main()
182 hmac_key = opt_arg(); in dgst_main()
250 if ((!(mac_name == NULL) + !(keyfile == NULL) + !(hmac_key == NULL)) > 1) { in dgst_main()
308 if (hmac_key != NULL) { in dgst_main()
310 (unsigned char *)hmac_key, -1); in dgst_main()
Dspeed.c2203 static const char hmac_key[] = "This is a key..."; in speed_main() local
2204 int len = strlen(hmac_key); in speed_main()
2213 HMAC_Init_ex(loopargs[i].hctx, hmac_key, len, EVP_md5(), NULL); in speed_main()
/third_party/openssl/doc/man3/
DSSL_CTX_set_tlsext_ticket_key_cb.pod151 * an aes_key, a hmac_key and optionally
160 HMAC_Init_ex(&hctx, key->hmac_key, 32, EVP_sha256(), NULL);
171 HMAC_Init_ex(&hctx, key->hmac_key, 32, EVP_sha256(), NULL);
/third_party/mbedtls/library/
Dpsa_crypto.c4318 const uint8_t *hmac_key, in psa_key_derivation_start_hmac() argument
4332 hmac_key, hmac_key_length, in psa_key_derivation_start_hmac()