aboutsummaryrefslogtreecommitdiff
path: root/crypto/skcipher.c
AgeCommit message (Expand)AuthorFilesLines
2024-04-02crypto: remove CONFIG_CRYPTO_STATSGravatar Eric Biggers 1-78/+8
2023-12-08crypto: skcipher - Make use of internal stateGravatar Herbert Xu 1-2/+78
2023-10-20crypto: skcipher - fix weak key check for lskciphersGravatar Eric Biggers 1-1/+7
2023-09-20crypto: skcipher - Add lskcipherGravatar Herbert Xu 1-17/+58
2023-05-02crypto: api - Fix CRYPTO_USER checks for report functionGravatar Ondrej Mosnacek 1-1/+1
2023-03-14crypto: api - Check CRYPTO_USER instead of NET for reportGravatar Herbert Xu 1-8/+4
2023-03-14crypto: skcipher - Count error stats differentlyGravatar Herbert Xu 1-18/+87
2023-01-13crypto: skcipher - Use scatterwalk (un)map interface for dst and src buffersGravatar Ard Biesheuvel 1-18/+4
2022-11-18crypto: skcipher - Allow sync algorithms with large request contextsGravatar Herbert Xu 1-1/+1
2021-08-21crypto: skcipher - in_irq() cleanupGravatar Changbin Du 1-1/+1
2021-01-14crypto: x86 - remove glue helper moduleGravatar Ard Biesheuvel 1-6/+0
2021-01-03crypto: remove cipher routines from public crypto APIGravatar Ard Biesheuvel 1-0/+2
2020-08-07mm, treewide: rename kzfree() to kfree_sensitive()Gravatar Waiman Long 1-1/+1
2020-07-16crypto: algapi - add NEED_FALLBACK to INHERITED_FLAGSGravatar Eric Biggers 1-2/+0
2020-07-16crypto: algapi - use common mechanism for inheriting flagsGravatar Eric Biggers 1-10/+5
2020-01-09crypto: algapi - enforce that all instances have a ->free() methodGravatar Eric Biggers 1-0/+3
2020-01-09crypto: cipher - make crypto_spawn_cipher() take a crypto_cipher_spawnGravatar Eric Biggers 1-1/+1
2020-01-09crypto: skcipher - use crypto_grab_cipher() and simplify error pathsGravatar Eric Biggers 1-24/+15
2020-01-09crypto: algapi - pass instance to crypto_grab_spawn()Gravatar Eric Biggers 1-2/+1
2020-01-09crypto: skcipher - pass instance to crypto_grab_skcipher()Gravatar Eric Biggers 1-1/+3
2020-01-09crypto: remove propagation of CRYPTO_TFM_RES_* flagsGravatar Eric Biggers 1-5/+1
2020-01-09crypto: remove CRYPTO_TFM_RES_BAD_KEY_LENGravatar Eric Biggers 1-3/+1
2020-01-09crypto: skcipher - remove skcipher_walk_aead()Gravatar Eric Biggers 1-9/+0
2019-12-27crypto: skcipher - Add skcipher_ialg_simple helperGravatar Herbert Xu 1-6/+3
2019-12-11crypto: skcipher - remove crypto_skcipher_extsize()Gravatar Eric Biggers 1-6/+1
2019-12-11crypto: skcipher - remove crypto_skcipher::decryptGravatar Eric Biggers 1-3/+1
2019-12-11crypto: skcipher - remove crypto_skcipher::encryptGravatar Eric Biggers 1-2/+1
2019-12-11crypto: skcipher - remove crypto_skcipher::setkeyGravatar Eric Biggers 1-2/+2
2019-12-11crypto: skcipher - remove crypto_skcipher::keysizeGravatar Eric Biggers 1-2/+1
2019-12-11crypto: skcipher - remove crypto_skcipher::ivsizeGravatar Eric Biggers 1-1/+0
2019-11-17crypto: ablkcipher - remove deprecated and unused ablkcipher supportGravatar Ard Biesheuvel 1-106/+0
2019-11-01crypto: skcipher - remove the "blkcipher" algorithm typeGravatar Eric Biggers 1-106/+1
2019-11-01crypto: skcipher - rename crypto_skcipher_type2 to crypto_skcipher_typeGravatar Eric Biggers 1-7/+6
2019-11-01crypto: skcipher - unify the crypto_has_skcipher*() functionsGravatar Eric Biggers 1-2/+2
2019-09-09crypto: skcipher - Unmap pages after an external errorGravatar Herbert Xu 1-19/+23
2019-07-08Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert...Gravatar Linus Torvalds 1-0/+34
2019-06-13crypto: skcipher - un-inline encrypt and decrypt functionsGravatar Eric Biggers 1-0/+34
2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152Gravatar Thomas Gleixner 1-6/+1
2019-04-08crypto: skcipher - don't WARN on unprocessed data after slow walk stepGravatar Eric Biggers 1-2/+7
2019-01-18crypto: skcipher - set CRYPTO_TFM_NEED_KEY if ->setkey() failsGravatar Eric Biggers 1-9/+18
2019-01-11crypto: skcipher - add helper for simple block cipher modesGravatar Eric Biggers 1-0/+131
2018-12-23crypto: skcipher - remove remnants of internal IV generatorsGravatar Eric Biggers 1-4/+2
2018-12-23crypto: skcipher - add might_sleep() to skcipher_walk_virt()Gravatar Eric Biggers 1-0/+2
2018-11-09crypto: user - clean up report structure copyingGravatar Eric Biggers 1-9/+6
2018-09-28crypto: skcipher - Introduce crypto_sync_skcipherGravatar Kees Cook 1-0/+24
2018-08-03crypto: skcipher - fix crash flushing dcache in error pathGravatar Eric Biggers 1-26/+27
2018-08-03crypto: skcipher - remove unnecessary setting of walk->nbytesGravatar Eric Biggers 1-1/+0
2018-08-03crypto: skcipher - fix aligning block size in skcipher_copy_iv()Gravatar Eric Biggers 1-1/+1
2018-07-01crypto: skcipher - remove the exporting of skcipher_walk_nextGravatar Denis Efremov 1-1/+0
2018-01-12crypto: skcipher - prevent using skciphers without setting keyGravatar Eric Biggers 1-4/+26