Home
last modified time | relevance | path

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

/third_party/openssl/crypto/camellia/
Dcmll_misc.c14 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/
Daria.c538 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/
Daes_core.c615 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 …]
Daes_x86core.c474 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/
Daria.h42 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/
Dindex.js8 var userKey = ':username' variable
76 var username = npmrc[regUrl + userKey] || npmrc[regUrl + '/' + userKey]
/third_party/openssl/include/openssl/
Daes.h43 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,
Dcamellia.h47 int Camellia_set_key(const unsigned char *userKey, const int bits,
/third_party/openssl/crypto/evp/
De_aes_cbc_hmac_sha1.c43 int aesni_set_encrypt_key(const unsigned char *userKey, int bits,
45 int aesni_set_decrypt_key(const unsigned char *userKey, int bits,
De_aes_cbc_hmac_sha256.c44 int aesni_set_encrypt_key(const unsigned char *userKey, int bits,
46 int aesni_set_decrypt_key(const unsigned char *userKey, int bits,
De_aes.c104 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/
Daesni-x86_64.pl4369 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