/external/dropbear/libtomcrypt/src/misc/crypt/ |
crypt_find_cipher.c | 23 int find_cipher(const char *name) function
|
crypt_find_cipher_any.c | 31 x = find_cipher(name);
|
/external/dropbear/libtomcrypt/demos/ |
multi.c | 60 omac_memory(find_cipher("aes"), key, 16, (unsigned char*)"hello", 5, buf[0], &len); 62 omac_memory_multi(find_cipher("aes"), key, 16, buf[1], &len2, (unsigned char*)"hello", 5UL, NULL); 68 omac_memory_multi(find_cipher("aes"), key, 16, buf[1], &len2, (unsigned char*)"he", 2UL, "llo", 3UL, NULL); 74 omac_memory_multi(find_cipher("aes"), key, 16, buf[1], &len2, (unsigned char*)"h", 1UL, "e", 1UL, "l", 1UL, "l", 1UL, "o", 1UL, NULL); 82 pmac_memory(find_cipher("aes"), key, 16, (unsigned char*)"hello", 5, buf[0], &len); 84 pmac_memory_multi(find_cipher("aes"), key, 16, buf[1], &len2, (unsigned char*)"hello", 5, NULL); 90 pmac_memory_multi(find_cipher("aes"), key, 16, buf[1], &len2, (unsigned char*)"he", 2UL, "llo", 3UL, NULL); 96 pmac_memory_multi(find_cipher("aes"), key, 16, buf[1], &len2, (unsigned char*)"h", 1UL, "e", 1UL, "l", 1UL, "l", 1UL, "o", 1UL, NULL);
|
encrypt.c | 139 cipher_idx = find_cipher(cipher);
|
tv_gen.c | 714 if ((err = lrw_start(find_cipher("aes"), iv, key, 16, tweak, 0, &lrw)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/modes/f8/ |
f8_test_mode.c | 45 idx = find_cipher("aes"); 47 idx = find_cipher("rijndael");
|
/external/dropbear/libtomcrypt/src/mac/omac/ |
omac_test.c | 81 if ((idx = find_cipher("aes")) == -1) { 82 if ((idx = find_cipher("rijndael")) == -1) {
|
/external/dropbear/libtomcrypt/src/mac/xcbc/ |
xcbc_test.c | 103 if ((idx = find_cipher("aes")) == -1) { 104 if ((idx = find_cipher("rijndael")) == -1) {
|
/external/dropbear/libtomcrypt/src/modes/ctr/ |
ctr_test.c | 56 if ((idx = find_cipher("aes")) == -1) { 57 if ((idx = find_cipher("rijndael")) == -1) {
|
/external/dropbear/libtomcrypt/src/mac/f9/ |
f9_test.c | 55 if ((idx = find_cipher("kasumi")) == -1) {
|
/external/dropbear/libtomcrypt/testprof/ |
modes_test.c | 25 cipher_idx = find_cipher("aes");
|
x86_prof.c | 1165 cipher_idx = find_cipher("aes"); [all...] |
/external/dropbear/libtomcrypt/src/encauth/ccm/ |
ccm_test.c | 121 idx = find_cipher("aes"); 123 idx = find_cipher("rijndael");
|
/external/dropbear/libtomcrypt/src/hashes/chc/ |
chc.c | 271 if ((idx = find_cipher("aes")) == -1) { 272 if ((idx = find_cipher("rijndael")) == -1) {
|
/external/dropbear/libtomcrypt/src/mac/pmac/ |
pmac_test.c | 129 if ((idx = find_cipher("aes")) == -1) { 130 if ((idx = find_cipher("rijndael")) == -1) {
|
/external/dropbear/libtomcrypt/src/modes/lrw/ |
lrw_test.c | 76 idx = find_cipher("aes"); 78 idx = find_cipher("rijndael");
|
/external/wpa_supplicant/ |
crypto_libtomcrypt.c | 313 idx = find_cipher("aes"); 316 idx = find_cipher("3des"); 319 idx = find_cipher("des"); 322 idx = find_cipher("rc2");
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
crypto_libtomcrypt.c | 313 idx = find_cipher("aes"); 316 idx = find_cipher("3des"); 319 idx = find_cipher("des"); 322 idx = find_cipher("rc2");
|
/external/wpa_supplicant_8/src/crypto/ |
crypto_libtomcrypt.c | 312 idx = find_cipher("aes"); 315 idx = find_cipher("3des"); 318 idx = find_cipher("des"); 321 idx = find_cipher("rc2");
|
/external/dropbear/libtomcrypt/src/encauth/ocb/ |
ocb_test.c | 172 if ((idx = find_cipher("aes")) == -1) { 173 if ((idx = find_cipher("rijndael")) == -1) {
|
/external/dropbear/libtomcrypt/src/encauth/eax/ |
eax_test.c | 221 if ((idx = find_cipher("aes")) == -1) { 222 if ((idx = find_cipher("rijndael")) == -1) {
|
/external/dropbear/ |
common-kex.c | 300 recv_cipher = find_cipher(ses.newkeys->recv_algo_crypt->cipherdesc->name); 309 trans_cipher = find_cipher(ses.newkeys->trans_algo_crypt->cipherdesc->name);
|
/external/dropbear/libtomcrypt/src/encauth/gcm/ |
gcm_test.c | 332 idx = find_cipher("aes"); 334 idx = find_cipher("rijndael");
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_cipher.h | 828 int find_cipher(const char *name);
|
/external/dropbear/libtomcrypt/ |
crypt.tex | 689 int find_cipher(char *name) 712 cipher_descriptor[find_cipher("blowfish")]. [all...] |