/third_party/openssl/crypto/camellia/ |
D | cmll_misc.c | 14 int Camellia_set_key(const unsigned char *userKey, const int bits, in Camellia_set_key() argument 17 if (!userKey || !key) in Camellia_set_key() 21 key->grand_rounds = Camellia_Ekeygen(bits, userKey, key->u.rd_key); in Camellia_set_key()
|
/third_party/openssl/crypto/aria/ |
D | aria.c | 538 int aria_set_encrypt_key(const unsigned char *userKey, const int bits, in aria_set_encrypt_key() argument 548 if (userKey == NULL || key == NULL) { in aria_set_encrypt_key() 559 w0[0] = GET_U32_BE(userKey, 0); in aria_set_encrypt_key() 560 w0[1] = GET_U32_BE(userKey, 1); in aria_set_encrypt_key() 561 w0[2] = GET_U32_BE(userKey, 2); in aria_set_encrypt_key() 562 w0[3] = GET_U32_BE(userKey, 3); in aria_set_encrypt_key() 572 w1[0] = GET_U32_BE(userKey, 4); in aria_set_encrypt_key() 573 w1[1] = GET_U32_BE(userKey, 5); in aria_set_encrypt_key() 575 w1[2] = GET_U32_BE(userKey, 6); in aria_set_encrypt_key() 576 w1[3] = GET_U32_BE(userKey, 7); in aria_set_encrypt_key() [all …]
|
/third_party/openssl/crypto/aes/ |
D | aes_core.c | 615 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, in AES_set_encrypt_key() argument 620 if (!userKey || !key) in AES_set_encrypt_key() 634 KeyExpansion(userKey, rk, key->rounds, bits/32); in AES_set_encrypt_key() 641 int AES_set_decrypt_key(const unsigned char *userKey, const int bits, in AES_set_decrypt_key() argument 644 return AES_set_encrypt_key(userKey, bits, key); in AES_set_decrypt_key() 1262 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, in AES_set_encrypt_key() argument 1270 if (!userKey || !key) in AES_set_encrypt_key() 1284 rk[0] = GETU32(userKey ); in AES_set_encrypt_key() 1285 rk[1] = GETU32(userKey + 4); in AES_set_encrypt_key() 1286 rk[2] = GETU32(userKey + 8); in AES_set_encrypt_key() [all …]
|
D | aes_x86core.c | 474 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, in AES_set_encrypt_key() argument 482 if (!userKey || !key) in AES_set_encrypt_key() 496 rk[0] = GETU32(userKey ); in AES_set_encrypt_key() 497 rk[1] = GETU32(userKey + 4); in AES_set_encrypt_key() 498 rk[2] = GETU32(userKey + 8); in AES_set_encrypt_key() 499 rk[3] = GETU32(userKey + 12); in AES_set_encrypt_key() 518 rk[4] = GETU32(userKey + 16); in AES_set_encrypt_key() 519 rk[5] = GETU32(userKey + 20); in AES_set_encrypt_key() 540 rk[6] = GETU32(userKey + 24); in AES_set_encrypt_key() 541 rk[7] = GETU32(userKey + 28); in AES_set_encrypt_key() [all …]
|
/third_party/openssl/include/crypto/ |
D | aria.h | 42 int aria_set_encrypt_key(const unsigned char *userKey, const int bits, 44 int aria_set_decrypt_key(const unsigned char *userKey, const int bits,
|
/third_party/node/deps/npm/node_modules/registry-auth-token/ |
D | index.js | 8 var userKey = ':username' variable 76 var username = npmrc[regUrl + userKey] || npmrc[regUrl + '/' + userKey]
|
/third_party/openssl/include/openssl/ |
D | aes.h | 43 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, 45 int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
|
D | camellia.h | 47 int Camellia_set_key(const unsigned char *userKey, const int bits,
|
/third_party/openssl/crypto/evp/ |
D | e_aes_cbc_hmac_sha1.c | 43 int aesni_set_encrypt_key(const unsigned char *userKey, int bits, 45 int aesni_set_decrypt_key(const unsigned char *userKey, int bits,
|
D | e_aes_cbc_hmac_sha256.c | 44 int aesni_set_encrypt_key(const unsigned char *userKey, int bits, 46 int aesni_set_decrypt_key(const unsigned char *userKey, int bits,
|
D | e_aes.c | 104 int vpaes_set_encrypt_key(const unsigned char *userKey, int bits, 106 int vpaes_set_decrypt_key(const unsigned char *userKey, int bits, 198 int aesni_set_encrypt_key(const unsigned char *userKey, int bits, 200 int aesni_set_decrypt_key(const unsigned char *userKey, int bits, 2566 int HWAES_set_encrypt_key(const unsigned char *userKey, const int bits, 2568 int HWAES_set_decrypt_key(const unsigned char *userKey, const int bits,
|
/third_party/openssl/crypto/aes/asm/ |
D | aesni-x86_64.pl | 4369 movups ($inp),%xmm0 # pull first 128 bits of *userKey 4480 movq 16($inp),%xmm2 # remaining 1/3 of *userKey 4550 movups 16($inp),%xmm2 # remaining half of *userKey
|