summaryrefslogtreecommitdiff
path: root/crypto/drbg.c
AgeCommit message (Expand)AuthorFilesLines
2026-05-15crypto: drbg - Remove support for "prediction resistance"Eric Biggers1-58/+24
2026-05-15crypto: drbg - Rename MAX_ADDTL => MAX_ADDTL_BYTESEric Biggers1-5/+6
2026-05-07crypto: drbg - Clean up loop in drbg_hmac_update()Eric Biggers1-12/+2
2026-05-07crypto: drbg - Clean up generation codeEric Biggers1-34/+19
2026-05-07crypto: drbg - Remove redundant reseeding based on random.c stateEric Biggers1-98/+9
2026-05-07crypto: drbg - Change DRBG_MAX_REQUESTS to 4096Eric Biggers1-1/+1
2026-05-07crypto: drbg - Include get_random_bytes() output in additional inputEric Biggers1-4/+25
2026-05-07crypto: drbg - Simplify "uninstantiate" logicEric Biggers1-44/+13
2026-05-07crypto: drbg - Fold drbg_prepare_hrng() into drbg_kcapi_seed()Eric Biggers1-22/+12
2026-05-07crypto: drbg - Separate "reseed" case in drbg_kcapi_seed()Eric Biggers1-22/+16
2026-05-07crypto: drbg - Fold drbg_instantiate() into drbg_kcapi_seed()Eric Biggers1-64/+43
2026-05-07crypto: drbg - Put rng_alg methods in logical orderEric Biggers1-46/+36
2026-05-07crypto: drbg - Simplify drbg_generate_long() and fold into callerEric Biggers1-31/+17
2026-05-07crypto: drbg - Eliminate use of 'drbg_string' and listsEric Biggers1-110/+69
2026-05-07crypto: drbg - Consolidate "instantiate" logic and remove drbg_state::CEric Biggers1-23/+15
2026-05-07crypto: drbg - Move module aliases to end of fileEric Biggers1-3/+2
2026-05-07crypto: drbg - Install separate seed functions for pr and noprEric Biggers1-9/+16
2026-05-07crypto: drbg - Remove drbg_coreEric Biggers1-86/+13
2026-05-07crypto: drbg - Use HMAC-SHA512 library APIEric Biggers1-173/+40
2026-05-07crypto: drbg - Embed V and C into struct drbg_stateEric Biggers1-26/+4
2026-05-07crypto: drbg - Move fixed values into constantsEric Biggers1-122/+61
2026-05-07crypto: drbg - De-virtualize drbg_state_opsEric Biggers1-44/+6
2026-05-07crypto: drbg - Simplify algorithm registrationEric Biggers1-65/+35
2026-05-07crypto: drbg - Remove support for HMAC-SHA256 and HMAC-SHA384Eric Biggers1-20/+2
2026-05-07crypto: drbg - Remove support for HASH_DRBGEric Biggers1-342/+6
2026-05-07crypto: drbg - Remove support for CTR_DRBGEric Biggers1-326/+6
2026-05-07crypto: drbg - Remove import of crypto_cipher functionsEric Biggers1-2/+0
2026-05-07crypto: drbg - Fold include/crypto/drbg.h into crypto/drbg.cEric Biggers1-1/+131
2026-05-07crypto: drbg - Remove obsolete FIPS 140-2 continuous testEric Biggers1-76/+2
2026-05-07crypto: drbg - Remove unhelpful helper functionsEric Biggers1-10/+5
2026-05-07crypto: drbg - Remove broken commented-out codeEric Biggers1-29/+0
2026-05-07crypto: drbg - Remove always-enabled symbol CRYPTO_DRBG_HMACEric Biggers1-15/+0
2026-05-07crypto: drbg - Fix the fips_enabled priority boostEric Biggers1-1/+1
2026-05-07crypto: drbg - Fix ineffective sanity checkEric Biggers1-5/+4
2026-05-07crypto: drbg - Fix misaligned writes in CTR_DRBG and HASH_DRBGEric Biggers1-1/+2
2026-05-07crypto: drbg - Fix returning success on failure in CTR_DRBGEric Biggers1-1/+1
2026-03-22crypto: Fix several spelling mistakes in commentsSun Chaobo1-1/+1
2026-02-22Convert 'alloc_obj' family to use the new default GFP_KERNEL argumentLinus Torvalds1-2/+2
2026-02-21treewide: Replace kmalloc with kmalloc_obj for non-scalar typesKees Cook1-2/+2
2026-02-10Merge tag 'locking-core-2026-02-08' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds1-1/+6
2026-02-10Merge tag 'v7.0-p1' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/...Linus Torvalds1-32/+17
2026-01-28crypto: Use scoped init guardMarco Elver1-1/+1
2026-01-16crypto: drbg - Use new AES library APIEric Biggers1-6/+6
2026-01-05crypto: Enable context analysisMarco Elver1-0/+5
2025-12-29crypto: drbg - make drbg_get_random_bytes() return *void*Sergey Shtylyov1-12/+5
2025-12-29crypto: drbg - make drbg_fips_continuous_test() return boolSergey Shtylyov1-17/+11
2025-12-29crypto: drbg - kill useless variable in drbg_fips_continuous_test()Sergey Shtylyov1-3/+1
2025-11-24crypto: drbg - Delete unused ctx from struct sdescHerbert Xu1-1/+0
2025-10-17crypto: drbg - Replace AES cipher calls with library callsHarsh Jain1-13/+8
2025-10-17crypto: drbg - Export CTR DRBG DF functionsHarsh Jain1-239/+5