aboutsummaryrefslogtreecommitdiffstats
path: root/crypto (follow)
AgeCommit message (Expand)AuthorFilesLines
2019-01-18crypto: shash - remove pointless checks of shash_alg::{export,import}Eric Biggers1-4/+2
2019-01-18crypto: shash - require neither or both ->export() and ->import()Eric Biggers1-0/+3
2019-01-18crypto: aead - set CRYPTO_TFM_NEED_KEY if ->setkey() failsEric Biggers1-1/+3
2019-01-18crypto: skcipher - set CRYPTO_TFM_NEED_KEY if ->setkey() failsEric Biggers1-9/+18
2019-01-18crypto: hash - set CRYPTO_TFM_NEED_KEY if ->setkey() failsEric Biggers2-14/+32
2019-01-11crypto: algapi - reject NULL crypto_spawn::instEric Biggers1-0/+3
2019-01-11crypto: algapi - remove crypto_alloc_instance()Eric Biggers1-31/+2
2019-01-11crypto: null - convert ecb-cipher_null to skcipher APIEric Biggers1-25/+32
2019-01-11crypto: arc4 - convert to skcipher APIEric Biggers1-38/+44
2019-01-11crypto: pcbc - convert to skcipher_alloc_instance_simple()Eric Biggers1-114/+11
2019-01-11crypto: pcbc - remove ability to wrap internal ciphersEric Biggers1-7/+3
2019-01-11crypto: ofb - convert to skcipher_alloc_instance_simple()Eric Biggers1-112/+7
2019-01-11crypto: keywrap - convert to skcipher APIEric Biggers1-133/+65
2019-01-11crypto: ecb - convert to skcipher APIEric Biggers1-115/+36
2019-01-11crypto: ctr - convert to skcipher APIEric Biggers1-119/+41
2019-01-11crypto: cfb - convert to skcipher_alloc_instance_simple()Eric Biggers1-118/+9
2019-01-11crypto: cbc - convert to skcipher_alloc_instance_simple()Eric Biggers1-118/+13
2019-01-11crypto: skcipher - add helper for simple block cipher modesEric Biggers1-0/+131
2019-01-11crypto: pcbc - remove bogus memcpy()s with src == destEric Biggers1-10/+4
2019-01-11crypto: ofb - fix handling partial blocks and make thread-safeEric Biggers2-56/+63
2019-01-11crypto: cfb - remove bogus memcpy() with src == destEric Biggers1-4/+4
2019-01-11crypto: cfb - add missing 'chunksize' propertyEric Biggers2-0/+31
2019-01-11crypto: Kconfig - Fix typo in "pclmul"haco1-2/+2
2019-01-10crypto: sm3 - fix undefined shift by >= width of valueEric Biggers1-1/+1
2019-01-10crypto: adiantum - initialize crypto_spawn::instEric Biggers1-0/+4
2019-01-10crypto: authencesn - Avoid twice completion call in decrypt pathHarsh Jain1-1/+1
2019-01-10crypto: authenc - fix parsing key with misaligned rta_lenEric Biggers1-3/+11
2018-12-29Merge tag 'kconfig-v4.21' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuildLinus Torvalds1-2/+2
2018-12-27Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6Linus Torvalds37-786/+6297
2018-12-26Merge branch 'core-rcu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds1-1/+1
2018-12-23crypto: skcipher - remove remnants of internal IV generatorsEric Biggers5-87/+7
2018-12-23crypto: salsa20-generic - don't unnecessarily use atomic walkEric Biggers1-1/+1
2018-12-23crypto: skcipher - add might_sleep() to skcipher_walk_virt()Eric Biggers1-0/+2
2018-12-23crypto: user - remove unused dump functionsCorentin Labbe2-36/+1
2018-12-22treewide: surround Kconfig file paths with double quotesMasahiro Yamada1-2/+2
2018-12-13crypto: adiantum - fix leaking reference to hash algorithmEric Biggers1-4/+5
2018-12-13crypto: user - support incremental algorithm dumpsEric Biggers1-17/+20
2018-12-13crypto: adiantum - adjust some comments to match latest paperEric Biggers2-20/+23
2018-12-13crypto: xchacha20 - fix comments for test vectorsEric Biggers1-8/+6
2018-12-13crypto: xchacha - add test vector from XChaCha20 draft RFCEric Biggers1-2/+176
2018-12-13crypto: x86/chacha - add XChaCha12 supportEric Biggers1-2/+2
2018-12-13crypto: x86/chacha20 - add XChaCha20 supportEric Biggers1-9/+3
2018-12-13crypto: x86/nhpoly1305 - add AVX2 accelerated NHPoly1305Eric Biggers1-0/+8
2018-12-13crypto: x86/nhpoly1305 - add SSE2 accelerated NHPoly1305Eric Biggers1-0/+8
2018-12-13crypto: adiantum - propagate CRYPTO_ALG_ASYNC flag to instanceEric Biggers1-0/+2
2018-12-13crypto: tcrypt - add block size of 1472 to skcipher templateArd Biesheuvel1-1/+1
2018-12-07crypto: user - Add crypto_stats_initCorentin Labbe1-3/+7
2018-12-07crypto: user - rename err_cnt parameterCorentin Labbe2-28/+28
2018-12-07crypto: user - Split stats in multiple structuresCorentin Labbe2-98/+92
2018-12-07crypto: user - remove intermediate variableCorentin Labbe1-91/+41