/external/dropbear/libtomcrypt/src/encauth/eax/ |
eax_encrypt.c | 38 if ((err = ctr_encrypt(pt, ct, length, &eax->ctr)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/src/modes/ctr/ |
ctr_decrypt.c | 34 return ctr_encrypt(ct, pt, len, ctr);
|
ctr_encrypt.c | 14 @file ctr_encrypt.c 29 int ctr_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_CTR *ctr) function 110 /* $Source: /cvs/libtom/libtomcrypt/src/modes/ctr/ctr_encrypt.c,v $ */
|
ctr_test.c | 66 if ((err = ctr_encrypt(tests[x].pt, buf, tests[x].msglen, &ctr)) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/demos/ |
encrypt.c | 223 if ((errno = ctr_encrypt(inbuf,ciphertext,y,&ctr)) != CRYPT_OK) { 224 printf("ctr_encrypt error: %s\n", error_to_string(errno));
|
/external/dropbear/libtomcrypt/src/prngs/ |
yarrow.c | 239 if (ctr_encrypt(out, out, outlen, &prng->yarrow.ctr) != CRYPT_OK) {
|
/external/dropbear/libtomcrypt/ |
Android.mk | 60 src/modes/ctr/ctr_decrypt.c src/modes/ctr/ctr_done.c src/modes/ctr/ctr_encrypt.c \
|
crypt.tex | [all...] |
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_cipher.h | 784 int ctr_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_CTR *ctr);
|
/external/dropbear/libtomcrypt/testprof/ |
x86_prof.c | 457 #define DO1 ctr_encrypt(pt, pt, sizeof(pt), &ctr); [all...] |