/optee_os/core/lib/libtomcrypt/src/modes/xts/ |
A D | xts_test.c | 25 if ((xts.cipher = find_cipher("aes")) == -1) { in _xts_test_accel_xts_encrypt() 26 if ((xts.cipher = find_cipher("rijndael")) == -1) { in _xts_test_accel_xts_encrypt() 52 if ((xts.cipher = find_cipher("aes")) == -1) { in _xts_test_accel_xts_decrypt() 53 if ((xts.cipher = find_cipher("rijndael")) == -1) { in _xts_test_accel_xts_decrypt() 209 if ((idx = find_cipher("aes")) == -1) { in xts_test() 210 if ((idx = find_cipher("rijndael")) == -1) { in xts_test()
|
/optee_os/core/lib/libtomcrypt/src/mac/xcbc/ |
A D | xcbc_test.c | 102 if ((idx = find_cipher("aes")) == -1) { in xcbc_test() 103 if ((idx = find_cipher("rijndael")) == -1) { in xcbc_test()
|
/optee_os/core/lib/libtomcrypt/src/modes/f8/ |
A D | f8_test_mode.c | 44 idx = find_cipher("aes"); in f8_test_mode() 46 idx = find_cipher("rijndael"); in f8_test_mode()
|
/optee_os/core/lib/libtomcrypt/src/mac/pmac/ |
A D | pmac_test.c | 128 if ((idx = find_cipher("aes")) == -1) { in pmac_test() 129 if ((idx = find_cipher("rijndael")) == -1) { in pmac_test()
|
/optee_os/core/lib/libtomcrypt/src/mac/omac/ |
A D | omac_test.c | 80 if ((idx = find_cipher("aes")) == -1) { in omac_test() 81 if ((idx = find_cipher("rijndael")) == -1) { in omac_test()
|
/optee_os/core/lib/libtomcrypt/src/modes/ctr/ |
A D | ctr_test.c | 55 if ((idx = find_cipher("aes")) == -1) { in ctr_test() 56 if ((idx = find_cipher("rijndael")) == -1) { in ctr_test()
|
/optee_os/core/lib/libtomcrypt/ |
A D | cbc.c | 126 return ltc_cbc_alloc_ctx(ctx, find_cipher("aes"), false); in crypto_aes_cbc_alloc_ctx() 133 return ltc_cbc_alloc_ctx(ctx, find_cipher("des"), false); in crypto_des_cbc_alloc_ctx() 138 return ltc_cbc_alloc_ctx(ctx, find_cipher("3des"), true); in crypto_des3_cbc_alloc_ctx()
|
A D | ecb.c | 124 return ltc_ecb_alloc_ctx(ctx, find_cipher("aes"), false); in crypto_aes_ecb_alloc_ctx() 131 return ltc_ecb_alloc_ctx(ctx, find_cipher("des"), false); in crypto_des_ecb_alloc_ctx() 136 return ltc_ecb_alloc_ctx(ctx, find_cipher("3des"), true); in crypto_des3_ecb_alloc_ctx()
|
A D | cmac.c | 90 int cipher_idx = find_cipher(cipher); in crypto_common_cmac_alloc_ctx()
|
A D | ctr.c | 99 int cipher_idx = find_cipher("aes"); in crypto_aes_ctr_alloc_ctx()
|
A D | xts.c | 116 int cipher_idx = find_cipher("aes"); in crypto_aes_xts_alloc_ctx()
|
A D | ccm.c | 69 int ltc_cipherindex = find_cipher("aes"); in crypto_aes_ccm_init()
|
A D | gcm.c | 68 int ltc_cipherindex = find_cipher("aes"); in crypto_aes_gcm_init()
|
/optee_os/core/lib/libtomcrypt/src/modes/lrw/ |
A D | lrw_test.c | 75 idx = find_cipher("aes"); in lrw_test() 77 idx = find_cipher("rijndael"); in lrw_test()
|
/optee_os/core/lib/libtomcrypt/src/encauth/ocb/ |
A D | ocb_test.c | 171 if ((idx = find_cipher("aes")) == -1) { in ocb_test() 172 if ((idx = find_cipher("rijndael")) == -1) { in ocb_test()
|
/optee_os/core/lib/libtomcrypt/src/encauth/eax/ |
A D | eax_test.c | 220 if ((idx = find_cipher("aes")) == -1) { in eax_test() 221 if ((idx = find_cipher("rijndael")) == -1) { in eax_test()
|
/optee_os/core/lib/libtomcrypt/src/encauth/gcm/ |
A D | gcm_test.c | 332 idx = find_cipher("aes"); in gcm_test() 334 idx = find_cipher("rijndael"); in gcm_test()
|
/optee_os/core/lib/libtomcrypt/src/misc/crypt/ |
A D | crypt_find_cipher.c | 22 int find_cipher(const char *name) in find_cipher() function
|
A D | crypt_find_cipher_any.c | 29 x = find_cipher(name); in find_cipher_any()
|
/optee_os/core/lib/libtomcrypt/src/mac/f9/ |
A D | f9_test.c | 54 if ((idx = find_cipher("kasumi")) == -1) { in f9_test()
|
/optee_os/core/lib/libtomcrypt/src/encauth/ocb3/ |
A D | ocb3_test.c | 213 if ((idx = find_cipher("aes")) == -1) { in ocb3_test() 214 if ((idx = find_cipher("rijndael")) == -1) { in ocb3_test()
|
/optee_os/core/lib/libtomcrypt/src/hashes/chc/ |
A D | chc.c | 279 if ((idx = find_cipher("aes")) == -1) { in chc_test() 280 if ((idx = find_cipher("rijndael")) == -1) { in chc_test()
|
/optee_os/core/lib/libtomcrypt/src/encauth/ccm/ |
A D | ccm_test.c | 123 idx = find_cipher("aes"); in ccm_test() 125 idx = find_cipher("rijndael"); in ccm_test()
|
/optee_os/core/lib/libtomcrypt/src/misc/pbes/ |
A D | pbes.c | 37 cid = find_cipher(arg->type.c); in pbes_decrypt()
|
/optee_os/core/lib/libtomcrypt/src/headers/ |
A D | tomcrypt_cipher.h | 984 int find_cipher(const char *name);
|