Update preset.
[bertos.git] / bertos / sec /
2012-01-11 asterixFix conding stily.
2012-01-11 asterixFix some warnings in MD5 code
2011-09-01 asterixSilent warnings.
2011-05-17 lottavianoDocumentation updates.
2011-05-13 asterixExclude these files from nightly test.
2011-02-19 arighimove is_aligned() helper function into bertos/cfg/macros.h
2011-02-17 arighisec: fix type qualifier ambiguity
2011-02-17 arighisec: silent wrong compiler warning in isaac
2011-02-17 arighisec: properly handle unaligned memory in xor_block...
2011-02-09 arighirandom: add module dependencies
2011-02-09 arighirandom: integrate the random module into the wizard
2010-10-15 asterixPut the specific random cpu backend to correct dir.
2010-10-15 asterixAdd entropy generation for stm32.
2010-10-15 asterixReformat.
2010-10-05 raskySEC: Isaac: change reseeding algorithm by xoring the...
2010-10-05 asterixSome fix to compile run test check.
2010-10-05 asterixSome fix to compile run test check.
2010-10-05 asterixFix missing header. Add blowfish source to run_test...
2010-10-04 raskySEC: add OFB mode to symmetric ciphers.
2010-10-04 raskySEC: Add 32-bit optimized AES implementation and refact...
2010-10-04 raskyAdd speed calculation to cipher benchmarks
2010-10-04 raskySEC: add another AES test for debugging purposes
2010-09-30 raskyAdd benchmarks for block ciphers.
2010-09-30 raskySEC: fix undeterminism in X917 and refactor to avoid...
2010-09-30 raskyFix missing header in test.
2010-09-30 raskyFix coding convention for HMAC module.
2010-09-30 raskySEC: Add OMAC1/2 message authentication.
2010-09-30 raskySEC: voidify mac interface.
2010-09-29 raskySEC: Add comment to warn about stack overflow.
2010-09-29 raskySEC: Decomment blowfish_stackinit()
2010-09-29 raskySEC: Add AES stress tests.
2010-09-29 raskySEC: Add blowfish cipher.
2010-09-29 raskySEC: improve cipher API to allow variable-key ciphers.
2010-09-29 raskyAdd copyright blurb.
2010-09-29 raskySEC: turn on strong random implementation by default.
2010-09-29 raskyRemove debug spew
2010-09-29 raskySEC: Fix entropy pool initialization and first reseed.
2010-09-29 raskySEC: Add Yarrow entropy pool implementation.
2010-09-29 raskySEC: fix first seeding of x917 to be fully deterministic.
2010-09-29 raskySEC: coding convention.
2010-09-29 raskyFollow coding convention.
2010-09-29 raskySEC: Add Yarrow PRNG generator.
2010-09-29 raskySEC: extract the CTR step into a public function, for...
2010-09-29 raskySEC: make sure PRNGs are seeded before generating data...
2010-09-29 raskySEC: update ISAAC to coding standard naming.
2010-09-29 raskySEC: update the preprocessor machinery for coding stand...
2010-09-29 raskySEC: Add ANSI X9.17 PRNG.
2010-09-29 raskySEC: Add AES test using official test vectors.
2010-09-29 raskySEC: Add AES implementation.
2010-09-29 raskySEC: Fix a last-minute typo.
2010-09-29 raskySEC: Add symmetric ciphers generic interface.
2010-09-29 raskySEC: fix a useless call in benchmarks.
2010-09-29 raskySEC: added cpu_relax() in busy-wait loop.
2010-09-28 raskySEC: add function to benchmark a PRNG.
2010-09-28 raskySEC: Add LM3S backend for entropy pulling.
2010-09-28 raskySEC: Add missing copyright header.
2010-09-28 raskySEC: Add high-level interface for secure random numbers...
2010-09-28 raskySEC: add generic interface for entropy pools.
2010-09-28 raskySEC: add missing include
2010-09-28 raskySEC: Add ISAAC PRNG implementation
2010-09-28 raskySEC: add generic interface for PRNGs.
2010-09-24 raskySEC: add RIPEMD-160 hash algorithm
2010-09-24 raskySEC: add some documentation to the interface.
2010-09-24 raskySEC: Add utilities module.
2010-09-24 raskySEC: add implementations for PBKDF1 and PBKDF2.
2010-09-24 raskySEC: add generic interface for key-derivation functions.
2010-09-24 raskySEC: implement stackinit() functions to simplify initia...
2010-09-24 raskySEC: add HMAC implementation.
2010-09-24 raskySEC: add interface for message authentication codes.
2010-09-24 raskySEC: Fix digest len and block len reported by algorithms.
2010-09-24 raskySEC: add MD5 implementation.
2010-09-24 raskySEC: move SHA-1 benchmark into generic file.
2010-09-24 raskySEC: use proper stack variables instead of a global...
2010-09-24 raskyAdd SHA-1 unrolled implementation (optimized for 32...
2010-09-24 raskySEC: Add hash function interface