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

/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/camellia/
H A Dcmll_misc.c14 int Camellia_set_key(const unsigned char *userKey, const int bits, argument
17 if (!userKey || !key)
21 key->grand_rounds = Camellia_Ekeygen(bits, userKey, key->u.rd_key);
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/camellia/
H A Dcmll_misc.c20 int Camellia_set_key(const unsigned char *userKey, const int bits, argument
23 if (!userKey || !key)
27 key->grand_rounds = Camellia_Ekeygen(bits, userKey, key->u.rd_key);
/netbsd-current/crypto/external/bsd/openssl.old/dist/include/crypto/
H A 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,
/netbsd-current/crypto/external/bsd/openssl/dist/include/crypto/
H A Daria.h43 int ossl_aria_set_encrypt_key(const unsigned char *userKey, const int bits,
45 int ossl_aria_set_decrypt_key(const unsigned char *userKey, const int bits,
H A Daes_platform.h17 int vpaes_set_encrypt_key(const unsigned char *userKey, int bits,
19 int vpaes_set_decrypt_key(const unsigned char *userKey, int bits,
156 int aesni_set_encrypt_key(const unsigned char *userKey, int bits,
158 int aesni_set_decrypt_key(const unsigned char *userKey, int bits,
402 int HWAES_set_encrypt_key(const unsigned char *userKey, const int bits,
404 int HWAES_set_decrypt_key(const unsigned char *userKey, const int bits,
/netbsd-current/crypto/external/bsd/openssl.old/dist/include/openssl/
H A 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,
H A Dcamellia.h47 int Camellia_set_key(const unsigned char *userKey, const int bits,
/netbsd-current/crypto/external/bsd/openssl/dist/include/openssl/
H A Daes.h51 int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
54 int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
H A Dcamellia.h58 OSSL_DEPRECATEDIN_3_0 int Camellia_set_key(const unsigned char *userKey,
/netbsd-current/crypto/external/bsd/netpgp/dist/src/libbn/
H A Dstubs.h77 int Camellia_set_key(const unsigned char *userKey, const int bits, CAMELLIA_KEY *key);
H A Dstubs.c143 Camellia_set_key(const unsigned char *userKey, const int bits, CAMELLIA_KEY *key) argument
146 USE_ARG(userKey);
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/aria/
H A Daria.c538 int aria_set_encrypt_key(const unsigned char *userKey, const int bits, argument
548 if (userKey == NULL || key == NULL) {
559 w0[0] = GET_U32_BE(userKey, 0);
560 w0[1] = GET_U32_BE(userKey, 1);
561 w0[2] = GET_U32_BE(userKey, 2);
562 w0[3] = GET_U32_BE(userKey, 3);
572 w1[0] = GET_U32_BE(userKey, 4);
573 w1[1] = GET_U32_BE(userKey, 5);
575 w1[2] = GET_U32_BE(userKey, 6);
576 w1[3] = GET_U32_BE(userKey,
670 aria_set_decrypt_key(const unsigned char *userKey, const int bits, ARIA_KEY *key) argument
1122 aria_set_encrypt_key(const unsigned char *userKey, const int bits, ARIA_KEY *key) argument
1195 aria_set_decrypt_key(const unsigned char *userKey, const int bits, ARIA_KEY *key) argument
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/aria/
H A Daria.c538 int ossl_aria_set_encrypt_key(const unsigned char *userKey, const int bits, argument
548 if (userKey == NULL || key == NULL) {
559 w0[0] = GET_U32_BE(userKey, 0);
560 w0[1] = GET_U32_BE(userKey, 1);
561 w0[2] = GET_U32_BE(userKey, 2);
562 w0[3] = GET_U32_BE(userKey, 3);
572 w1[0] = GET_U32_BE(userKey, 4);
573 w1[1] = GET_U32_BE(userKey, 5);
575 w1[2] = GET_U32_BE(userKey, 6);
576 w1[3] = GET_U32_BE(userKey,
670 ossl_aria_set_decrypt_key(const unsigned char *userKey, const int bits, ARIA_KEY *key) argument
1122 ossl_aria_set_encrypt_key(const unsigned char *userKey, const int bits, ARIA_KEY *key) argument
1195 ossl_aria_set_decrypt_key(const unsigned char *userKey, const int bits, ARIA_KEY *key) argument
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/aes/
H A Daes_core.c615 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
620 if (!userKey || !key)
634 KeyExpansion(userKey, rk, key->rounds, bits/32);
641 int AES_set_decrypt_key(const unsigned char *userKey, const int bits, argument
644 return AES_set_encrypt_key(userKey, bits, key);
1262 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
1270 if (!userKey || !key)
1284 rk[0] = GETU32(userKey );
1285 rk[1] = GETU32(userKey + 4);
1286 rk[2] = GETU32(userKey
1364 AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
1841 AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
1942 AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
[all...]
H A Daes_x86core.c474 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
482 if (!userKey || !key)
496 rk[0] = GETU32(userKey );
497 rk[1] = GETU32(userKey + 4);
498 rk[2] = GETU32(userKey + 8);
499 rk[3] = GETU32(userKey + 12);
518 rk[4] = GETU32(userKey + 16);
519 rk[5] = GETU32(userKey + 20);
540 rk[6] = GETU32(userKey + 24);
541 rk[7] = GETU32(userKey
576 AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/aes/
H A Daes_core.c631 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
636 if (!userKey || !key)
650 KeyExpansion(userKey, rk, key->rounds, bits/32);
657 int AES_set_decrypt_key(const unsigned char *userKey, const int bits, argument
660 return AES_set_encrypt_key(userKey, bits, key);
1278 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
1286 if (!userKey || !key)
1300 rk[0] = GETU32(userKey );
1301 rk[1] = GETU32(userKey + 4);
1302 rk[2] = GETU32(userKey
1380 AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
1857 AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
1958 AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
[all...]
H A Daes_x86core.c474 int AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
482 if (!userKey || !key)
496 rk[0] = GETU32(userKey );
497 rk[1] = GETU32(userKey + 4);
498 rk[2] = GETU32(userKey + 8);
499 rk[3] = GETU32(userKey + 12);
518 rk[4] = GETU32(userKey + 16);
519 rk[5] = GETU32(userKey + 20);
540 rk[6] = GETU32(userKey + 24);
541 rk[7] = GETU32(userKey
576 AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
[all...]
/netbsd-current/crypto/external/bsd/openssl/lib/libcrypto/arch/m68k/
H A Daes-m68k.S31 | AES_set_encrypt_key(const unsigned char *userKey,
39 moveal %sp@(44+4),%a0 | userKey
44 beq .Lpek_return1 | return -1 if userKey == NULL
52 | %a0 userKey, Te0
65 | rk[0] = GETU32(userKey );
66 | rk[1] = GETU32(userKey + 4);
67 | rk[2] = GETU32(userKey + 8);
68 | rk[3] = GETU32(userKey + 12);
124 | %a0 userKey
142 | rk[0] = GETU32(userKey );
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/lib/libcrypto/arch/m68k/
H A Daes-m68k.S31 | AES_set_encrypt_key(const unsigned char *userKey,
39 moveal %sp@(44+4),%a0 | userKey
44 beq .Lpek_return1 | return -1 if userKey == NULL
52 | %a0 userKey, Te0
65 | rk[0] = GETU32(userKey );
66 | rk[1] = GETU32(userKey + 4);
67 | rk[2] = GETU32(userKey + 8);
68 | rk[3] = GETU32(userKey + 12);
124 | %a0 userKey
142 | rk[0] = GETU32(userKey );
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/engines/
H A De_padlock.c150 static int padlock_aes_set_encrypt_key(const unsigned char *userKey,
153 static int padlock_aes_set_decrypt_key(const unsigned char *userKey,
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/evp/
H A 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,
H A 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,
H A 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,
2568 int HWAES_set_encrypt_key(const unsigned char *userKey, const int bits,
2570 int HWAES_set_decrypt_key(const unsigned char *userKey, const int bits,
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/evp/
H A De_aes_cbc_hmac_sha1.c49 int aesni_set_encrypt_key(const unsigned char *userKey, int bits,
51 int aesni_set_decrypt_key(const unsigned char *userKey, int bits,
H A De_aes_cbc_hmac_sha256.c49 int aesni_set_encrypt_key(const unsigned char *userKey, int bits,
51 int aesni_set_decrypt_key(const unsigned char *userKey, int bits,

Completed in 226 milliseconds