/external/dropbear/libtomcrypt/src/modes/ecb/ |
ecb_decrypt.c | 14 @file ecb_decrypt.c 28 int ecb_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_ECB *ecb) function 46 if ((err = cipher_descriptor[ecb->cipher].ecb_decrypt(ct, pt, &ecb->key)) != CRYPT_OK) { 59 /* $Source: /cvs/libtom/libtomcrypt/src/modes/ecb/ecb_decrypt.c,v $ */
|
/external/dropbear/libtomcrypt/src/encauth/ocb/ |
ocb_decrypt.c | 40 LTC_ARGCHK(cipher_descriptor[ocb->cipher].ecb_decrypt != NULL); 54 if ((err = cipher_descriptor[ocb->cipher].ecb_decrypt(tmp, pt, &ocb->key)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/modes/cbc/ |
cbc_decrypt.c | 66 if ((err = cipher_descriptor[cbc->cipher].ecb_decrypt(ct, tmp, &cbc->key)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/modes/lrw/ |
lrw_process.c | 92 if ((err = cipher_descriptor[lrw->cipher].ecb_decrypt(ct, ct, &lrw->key)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_cipher.h | 352 int (*ecb_decrypt)(const unsigned char *ct, unsigned char *pt, symmetric_key *skey); member in struct:ltc_cipher_descriptor 739 int ecb_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_ECB *ecb);
|
/external/dropbear/libtomcrypt/ |
Android.mk | 62 src/modes/ecb/ecb_decrypt.c src/modes/ecb/ecb_done.c src/modes/ecb/ecb_encrypt.c \
|
crypt.tex | [all...] |
/external/dropbear/libtomcrypt/testprof/ |
x86_prof.c | 329 #define DO1 ecb_decrypt(pt, pt, sizeof(pt), &ecb); [all...] |