Searched refs:userKey (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/crypto/openssl/crypto/aes/
H A Daes_misc.c70 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
76 return private_AES_set_encrypt_key(userKey, bits, key);
79 int AES_set_decrypt_key(const unsigned char *userKey, const int bits, argument
85 return private_AES_set_decrypt_key(userKey, bits, key);
H A Daes.h90 int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
92 int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
95 int private_AES_set_encrypt_key(const unsigned char *userKey, const int bits,
97 int private_AES_set_decrypt_key(const unsigned char *userKey, const int bits,
H A Daes_core.c628 int private_AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
636 if (!userKey || !key)
650 rk[0] = GETU32(userKey );
651 rk[1] = GETU32(userKey + 4);
652 rk[2] = GETU32(userKey + 8);
653 rk[3] = GETU32(userKey + 12);
672 rk[4] = GETU32(userKey + 16);
673 rk[5] = GETU32(userKey + 20);
694 rk[6] = GETU32(userKey + 24);
695 rk[7] = GETU32(userKey
730 private_AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
1207 private_AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
1308 private_AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
[all...]
H A Daes_x86core.c472 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
480 if (!userKey || !key)
494 rk[0] = GETU32(userKey );
495 rk[1] = GETU32(userKey + 4);
496 rk[2] = GETU32(userKey + 8);
497 rk[3] = GETU32(userKey + 12);
516 rk[4] = GETU32(userKey + 16);
517 rk[5] = GETU32(userKey + 20);
538 rk[6] = GETU32(userKey + 24);
539 rk[7] = GETU32(userKey
574 AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/camellia/
H A Dcmll_utl.c57 int Camellia_set_key(const unsigned char *userKey, const int bits, argument
63 return private_Camellia_set_key(userKey, bits, key);
H A Dcmll_misc.c59 int private_Camellia_set_key(const unsigned char *userKey, const int bits, argument
62 if (!userKey || !key)
66 key->grand_rounds = Camellia_Ekeygen(bits, userKey, key->u.rd_key);
H A Dcmll_locl.h86 int private_Camellia_set_key(const unsigned char *userKey, const int bits,
H A Dcamellia.h94 int private_Camellia_set_key(const unsigned char *userKey, const int bits,
97 int Camellia_set_key(const unsigned char *userKey, const int bits,
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A De_aes.c123 int vpaes_set_encrypt_key(const unsigned char *userKey, int bits,
125 int vpaes_set_decrypt_key(const unsigned char *userKey, int bits,
200 int aesni_set_encrypt_key(const unsigned char *userKey, int bits,
202 int aesni_set_decrypt_key(const unsigned char *userKey, int bits,
898 int HWAES_set_encrypt_key(const unsigned char *userKey, const int bits,
900 int HWAES_set_decrypt_key(const unsigned char *userKey, const int bits,
H A De_aes_cbc_hmac_sha1.c101 int aesni_set_encrypt_key(const unsigned char *userKey, int bits,
103 int aesni_set_decrypt_key(const unsigned char *userKey, int bits,
H A De_aes_cbc_hmac_sha256.c101 int aesni_set_encrypt_key(const unsigned char *userKey, int bits,
103 int aesni_set_decrypt_key(const unsigned char *userKey, int bits,

Completed in 186 milliseconds