aboutsummaryrefslogtreecommitdiff
path: root/crypto/drbg.c
AgeCommit message (Expand)AuthorFilesLines
2015-06-10crypto: drbg - Use callback API for random readinessGravatar Stephan Mueller 1-91/+126
2015-06-04crypto: drbg - Add stdrng alias and increase priorityGravatar Herbert Xu 1-1/+2
2015-05-27crypto: drbg - use Jitter RNG to obtain seedGravatar Stephan Mueller 1-7/+45
2015-05-27crypto: drbg - add async seeding operationGravatar Stephan Mueller 1-0/+24
2015-05-27crypto: drbg - prepare for async seedingGravatar Stephan Mueller 1-27/+54
2015-04-23crypto: drbg - Remove FIPS ifdef from drbg_healthcheck_sanityGravatar Herbert Xu 1-4/+0
2015-04-22crypto: drbg - Convert to new rng interfaceGravatar Herbert Xu 1-69/+54
2015-04-21crypto: drbg - Do not seed RNG in drbg_kcapi_initGravatar Herbert Xu 1-48/+55
2015-04-21crypto: drbg - Initialise mutex in drbg_healthcheck_sanityGravatar Herbert Xu 1-0/+2
2015-04-21crypto: drbg - leave cipher handles operationalGravatar Stephan Mueller 1-8/+4
2015-04-21crypto: drbg - replace spinlock with mutexGravatar Stephan Mueller 1-119/+25
2015-04-21crypto: drbg - fix drbg_generate return val checkGravatar Stephan Mueller 1-7/+7
2015-04-21cryoto: drbg - clear all temporary memoryGravatar Stephan Mueller 1-1/+1
2015-03-09crypto: rng - RNGs must return 0 in success caseGravatar Stephan Mueller 1-1/+6
2015-03-04crypto: drbg - remove superflowous memsetsGravatar Stephan Mueller 1-18/+0
2015-03-04crypto: drbg - use single block cipher APIGravatar Stephan Mueller 1-23/+16
2015-01-05Revert "crypto: drbg - use memzero_explicit() for clearing sensitive data"Gravatar Herbert Xu 1-12/+11
2014-12-22crypto: drbg - panic on continuous self test errorGravatar Stephan Mueller 1-9/+2
2014-11-27crypto: drbg - use memzero_explicit() for clearing sensitive dataGravatar Nickolaus Woodruff 1-11/+12
2014-11-26crypto: drbg - use MODULE_ALIAS_CRYPTOGravatar Stephan Mueller 1-22/+22
2014-11-10crypto: drbg - add MODULE_ALIAS for all DRBG typesGravatar Stephan Mueller 1-0/+25
2014-10-24crypto: drbg - use crypto_incGravatar Stephan Mueller 1-41/+38
2014-09-05Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6Gravatar Herbert Xu 1-3/+0
2014-09-05crypto: drbg - remove check for uninitialized DRBG handleGravatar Stephan Mueller 1-3/+0
2014-08-26crypto: drbg - fix sparse warning for cpu_to_be[32|64]Gravatar Stephan Mueller 1-2/+2
2014-08-25crypto: drbg - remove unnecessary sanity check for shadow stateGravatar Stephan Mueller 1-3/+0
2014-08-25crypto: drbg - remove configuration of fixed valuesGravatar Stephan Mueller 1-33/+0
2014-08-25crypto: drbg - remove unnecessary sanity checksGravatar Stephan Mueller 1-9/+0
2014-08-25crypto: drbg - use kmalloc instead of kzalloc for V and CGravatar Stephan Mueller 1-3/+8
2014-08-25crypto: drbg - remove superflowous memset(0)Gravatar Stephan Mueller 1-4/+2
2014-08-25crypto: drbg - remove superflowous checksGravatar Stephan Mueller 1-10/+6
2014-08-25crypto: drbg - kzfree does not need a check for NULL pointerGravatar Stephan Mueller 1-12/+6
2014-08-25crypto: drbg - replace int2byte with cpu_to_beGravatar Stephan Mueller 1-16/+18
2014-08-01crypto: drbg - fix failure of generating multiple of 2**16 bytesGravatar Stephan Mueller 1-1/+1
2014-07-10crypto: drbg - drbg_exit() can be staticGravatar Fengguang Wu 1-1/+1
2014-07-08crypto: drbg - HMAC-SHA1 DRBG has crypto strength of 128 bitsGravatar Stephan Mueller 1-1/+1
2014-07-08crypto: drbg - Mix a time stamp into DRBG stateGravatar Stephan Mueller 1-24/+35
2014-07-08crypto: drbg - Select correct DRBG core for stdrngGravatar Stephan Mueller 1-1/+1
2014-07-08crypto: drbg - Call CTR DRBG DF function only onceGravatar Stephan Mueller 1-19/+22
2014-07-08crypto: drbg - Fix format string for debugging statementsGravatar Stephan Mueller 1-2/+2
2014-07-08crypto: drbg - cleanup of preprocessor macrosGravatar Stephan Mueller 1-11/+17
2014-07-04crypto: drbg - Use Kconfig to ensure at least one RNG option is setGravatar Herbert Xu 1-6/+0
2014-07-04crypto: drbg - use of kernel linked listGravatar Stephan Mueller 1-109/+124
2014-07-04crypto: drbg - fix memory corruption for AES192Gravatar Stephan Mueller 1-3/+11
2014-06-26crypto: drbg - simplify ordering of linked list in drbg_ctr_dfGravatar Stephan Mueller 1-5/+5
2014-06-20crypto: drbg - SP800-90A Deterministic Random Bit GeneratorGravatar Stephan Mueller 1-0/+2007