HomeSort by relevance Sort by last modified time
    Searched full:fortuna (Results 1 - 11 of 11) sorted by null

  /external/dropbear/libtomcrypt/src/prngs/
fortuna.c 14 @file fortuna.c
15 Fortuna PRNG, Tom St Denis
18 /* Implementation of Fortuna by Tom St Denis
24 #ifdef FORTUNA
28 #error FORTUNA requires SHA256 and RIJNDAEL (AES)
41 "fortuna", 1024,
58 IV = prng->fortuna.IV;
72 ++prng->fortuna.reset_cnt;
76 if ((err = sha256_process(&md, prng->fortuna.K, 32)) != CRYPT_OK) {
82 if (x == 0 || ((prng->fortuna.reset_cnt >> (x-1)) & 1) == 0) {
    [all...]
  /external/dropbear/libtomcrypt/notes/
tech0004.txt 2 Using Yarrow, Fortuna and SOBER-128
31 Fortuna
34 Fortuna was designed by Niels Fergusson and Bruce Schneier [Bruce is also the guy who invented Yarrow]. It
59 Fortuna is really meant for a kernel-level PRNG. The more sources [and often] you feed into it the
84 Since SOBER-128 is *much* faster than the other two PRNGs a good setup would be to use Fortuna as your
85 system-wide PRNG and use SOBER-128 [key'ed from Fortuna] for encrypting streams or as a PRNG for
88 Yarrow is still a good candidate but only for "short lived" programs. However, since Fortuna is faster
89 [by about 10 cycles/byte on a P4] I'd use Fortuna anyways...
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_prng.h 18 #ifdef FORTUNA
58 #ifdef FORTUNA
59 struct fortuna_prng fortuna; member in union:Prng_state
133 #ifdef FORTUNA
  /external/dropbear/libtomcrypt/src/misc/crypt/
crypt.c 241 #if defined(FORTUNA)
242 " Fortuna\n"
  /external/dropbear/libtomcrypt/
makefile.msvc 111 src/pk/rsa/rsa_make_key.obj src/pk/rsa/rsa_sign_hash.obj src/pk/rsa/rsa_verify_hash.obj src/prngs/fortuna.obj \
changes 28 v1.15 -- Andreas Lange found that if sha256_init DID fail in fortuna it wouldn't clean up the state correctly. Thanks.
90 if I ever make fortuna pluggable
201 -- Added LTC_MUTEX_* support to Yarrow and Fortuna allowing you to use respective prng_state as a global PRNG state [e.g. thread-safe] if you define one of the LTC_* defines at
    [all...]
makefile.icc 201 src/pk/rsa/rsa_make_key.o src/pk/rsa/rsa_sign_hash.o src/pk/rsa/rsa_verify_hash.o src/prngs/fortuna.o \
makefile.shared 206 src/pk/rsa/rsa_make_key.o src/pk/rsa/rsa_sign_hash.o src/pk/rsa/rsa_verify_hash.o src/prngs/fortuna.o \
makefile.unix 147 src/pk/rsa/rsa_make_key.o src/pk/rsa/rsa_sign_hash.o src/pk/rsa/rsa_verify_hash.o src/prngs/fortuna.o \
crypt.tex     [all...]
  /external/dropbear/libtomcrypt/testprof/
x86_prof.c 238 #ifdef FORTUNA
    [all...]

Completed in 298 milliseconds