/external/dropbear/libtomcrypt/src/modes/ctr/ |
ctr_start.c | 84 return cipher_descriptor[ctr->cipher].ecb_encrypt(ctr->ctr, ctr->pad, &ctr->key);
|
ctr_encrypt.c | 84 if ((err = cipher_descriptor[ctr->cipher].ecb_encrypt(ctr->ctr, ctr->pad, &ctr->key)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/encauth/ocb/ |
ocb_init.c | 79 if ((err = cipher_descriptor[cipher].ecb_encrypt(ocb->L, ocb->L, &ocb->key)) != CRYPT_OK) { 87 if ((err = cipher_descriptor[cipher].ecb_encrypt(ocb->R, ocb->R, &ocb->key)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/encauth/gcm/ |
gcm_init.c | 61 if ((err = cipher_descriptor[cipher].ecb_encrypt(B, gcm->H, &gcm->K)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/modes/cbc/ |
cbc_encrypt.c | 71 if ((err = cipher_descriptor[cbc->cipher].ecb_encrypt(cbc->IV, ct, &cbc->key)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/modes/f8/ |
f8_start.c | 80 if ((err = cipher_descriptor[f8->cipher].ecb_encrypt(IV, f8->MIV, &f8->key)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/modes/lrw/ |
lrw_process.c | 88 if ((err = cipher_descriptor[lrw->cipher].ecb_encrypt(ct, ct, &lrw->key)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/hashes/chc/ |
chc.c | 116 cipher_descriptor[cipher_idx].ecb_encrypt(buf, md->chc.state, key); 146 cipher_descriptor[cipher_idx].ecb_encrypt(buf, T[0], key);
|
/external/dropbear/libtomcrypt/src/mac/pmac/ |
pmac_init.c | 90 if ((err = cipher_descriptor[cipher].ecb_encrypt(L, L, &pmac->key)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_cipher.h | 345 int (*ecb_encrypt)(const unsigned char *pt, unsigned char *ct, symmetric_key *skey); member in struct:ltc_cipher_descriptor 738 int ecb_encrypt(const unsigned char *pt, unsigned char *ct, 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/demos/ |
tv_gen.c | 207 cipher_descriptor[x].ecb_encrypt(pt, pt, &skey);
|
/external/openssl/crypto/des/ |
des_old.h | 428 # define ecb_encrypt des_ecb_encrypt macro
|
/external/openssl/include/openssl/ |
des_old.h | 428 # define ecb_encrypt des_ecb_encrypt macro
|
/external/dropbear/libtomcrypt/testprof/ |
x86_prof.c | 310 #define DO1 ecb_encrypt(pt, pt, sizeof(pt), &ecb); [all...] |