aboutsummaryrefslogtreecommitdiff
path: root/crypto/ctr.c
AgeCommit message (Expand)AuthorFilesLines
2023-10-13crypto: ctr - Only access common skcipher fields on spawnGravatar Herbert Xu 1-8/+6
2021-01-03crypto: remove cipher routines from public crypto APIGravatar Ard Biesheuvel 1-0/+2
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-14/+5
2020-03-06crypto: ctr - simplify error handling in crypto_rfc3686_create()Gravatar Eric Biggers 1-20/+9
2020-01-09crypto: skcipher - pass instance to crypto_grab_skcipher()Gravatar Eric Biggers 1-2/+2
2020-01-09crypto: remove propagation of CRYPTO_TFM_RES_* flagsGravatar Eric Biggers 1-6/+1
2019-12-27crypto: skcipher - Add skcipher_ialg_simple helperGravatar Herbert Xu 1-8/+7
2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152Gravatar Thomas Gleixner 1-6/+1
2019-04-18crypto: run initcalls for generic implementations earlierGravatar Eric Biggers 1-1/+1
2019-01-25crypto: ctr - use template array registering API to simplify the codeGravatar Xiongfeng Wang 1-28/+14
2019-01-11crypto: ctr - convert to skcipher APIGravatar Eric Biggers 1-119/+41
2018-12-23crypto: skcipher - remove remnants of internal IV generatorsGravatar Eric Biggers 1-2/+0
2018-04-21crypto: remove several VLAsGravatar Salvatore Mesoraca 1-2/+2
2017-08-04crypto: algapi - make crypto_xor() take separate dst and src argumentsGravatar Ard Biesheuvel 1-2/+1
2017-03-09crypto: ctr - Propagate NEED_FALLBACK bitGravatar Marcelo Cerri 1-5/+18
2017-02-11crypto: algapi - make crypto_xor() and crypto_inc() alignment agnosticGravatar Ard Biesheuvel 1-1/+1
2016-11-01crypto: skcipher - Get rid of crypto_spawn_skcipher2()Gravatar Eric Biggers 1-1/+1
2016-11-01crypto: skcipher - Get rid of crypto_grab_skcipher2()Gravatar Eric Biggers 1-3/+3
2016-07-18crypto: ctr - Use skcipher in rfc3686Gravatar Herbert Xu 1-89/+94
2014-11-26crypto: include crypto- module prefix in templateGravatar Kees Cook 1-0/+1
2014-11-24crypto: prefix module autoloading with "crypto-"Gravatar Kees Cook 1-1/+1
2013-02-25Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6Gravatar Linus Torvalds 1-4/+2
2013-02-04crypto: use ERR_CASTGravatar Julia Lawall 1-2/+1
2013-01-08crypto: ctr - make rfc3686 asynchronous block cipherGravatar Jussi Kivilinna 1-63/+110
2010-05-26crypto: Use ERR_CASTGravatar Julia Lawall 1-1/+1
2009-08-13crypto: ctr - Use chainiv on raw counter modeGravatar Herbert Xu 1-0/+2
2008-01-11[CRYPTO] seqiv: Add Sequence Number IV GeneratorGravatar Herbert Xu 1-0/+2
2008-01-11[CRYPTO] ctr: Refactor into ctr and rfc3686Gravatar Herbert Xu 1-128/+206
2008-01-11[CRYPTO] ctr: Fix multi-page processingGravatar Herbert Xu 1-31/+33
2008-01-11[CRYPTO] ctr: Use crypto_inc and crypto_xorGravatar Herbert Xu 1-55/+16
2008-01-11[CRYPTO] ctr: Add countersizeGravatar Joy Latten 1-11/+21
2008-01-11[CRYPTO] ctr: Add CTR (Counter) block cipher modeGravatar Joy Latten 1-0/+369