Home
last modified time | relevance | path

Searched refs:ctr_start (Results 1 – 15 of 15) sorted by relevance

/external/dropbear/libtomcrypt/demos/
Dencrypt.c173 if ((errno = ctr_start(cipher_idx,IV,key,ks,0,CTR_COUNTER_LITTLE_ENDIAN,&ctr)) != CRYPT_OK) { in main()
215 if ((errno = ctr_start(cipher_idx,IV,key,ks,0,CTR_COUNTER_LITTLE_ENDIAN,&ctr)) != CRYPT_OK) { in main()
/external/dropbear/libtomcrypt/src/modes/ctr/
Dctr_test.c63 …if ((err = ctr_start(idx, tests[x].IV, tests[x].key, tests[x].keylen, 0, CTR_COUNTER_BIG_ENDIAN|LT… in ctr_test()
Dctr_start.c32 int ctr_start( int cipher, in ctr_start() function
/external/dropbear/libtomcrypt/src/encauth/eax/
Deax_init.c111 …if ((err = ctr_start(cipher, eax->N, key, keylen, 0, CTR_COUNTER_BIG_ENDIAN, &eax->ctr)) != CRYPT_… in eax_init()
/external/dropbear/libtomcrypt/src/prngs/
Dyarrow.c208 if ((err = ctr_start(prng->yarrow.cipher, /* what cipher to use */ in yarrow_ready()
/external/dropbear/libtomcrypt/
DAndroid.mk61 src/modes/ctr/ctr_getiv.c src/modes/ctr/ctr_setiv.c src/modes/ctr/ctr_start.c src/modes/ctr/ctr_tes…
DMakefile.in152 src/modes/ctr/ctr_getiv.o src/modes/ctr/ctr_setiv.o src/modes/ctr/ctr_start.o src/modes/ctr/ctr_tes…
Dmakefile.msvc59 src/modes/ctr/ctr_getiv.obj src/modes/ctr/ctr_setiv.obj src/modes/ctr/ctr_start.obj src/modes/ctr/c…
Dmakefile.icc149 src/modes/ctr/ctr_getiv.o src/modes/ctr/ctr_setiv.o src/modes/ctr/ctr_start.o src/modes/ctr/ctr_tes…
Dmakefile.unix95 src/modes/ctr/ctr_getiv.o src/modes/ctr/ctr_setiv.o src/modes/ctr/ctr_start.o src/modes/ctr/ctr_tes…
Dmakefile.shared154 src/modes/ctr/ctr_getiv.o src/modes/ctr/ctr_setiv.o src/modes/ctr/ctr_start.o src/modes/ctr/ctr_tes…
Dchanges53 …parameter you pass to ctr_start(), otherwise it will be LTC compliant (e.g. encrypt then increment)
170 v1.07 -- Craig Schlenter pointed out the "encrypt" demo doesn't call ctr_start() correctly. That's…
266 -- Pekka Riikonen pointed out that my ctr_start() function should accept the counter mode.
Dcrypt.tex860 int ctr_start( int cipher,
974 if ((err = ctr_start(
983 printf("ctr_start error: %s\n", error_to_string(err));
1000 if ((err = ctr_setiv( IV, /* the initial IV we gave to ctr_start */
/external/dropbear/libtomcrypt/src/headers/
Dtomcrypt_cipher.h779 int ctr_start( int cipher,
/external/dropbear/libtomcrypt/testprof/
Dx86_prof.c449 ctr_start(x, pt, key, cipher_descriptor[x].min_key_length, 0, CTR_COUNTER_LITTLE_ENDIAN, &ctr); in time_cipher3()