summaryrefslogtreecommitdiff
path: root/crypto (follow)
Commit message (Expand)AuthorAgeFilesLines
* crypto: testmgr - do comparison tests before inauthentic input testsEric Biggers2020-03-121-2/+2
* crypto: testmgr - use consistent IV copies for AEADs that need itEric Biggers2020-03-121-9/+15
* crypto: xts - simplify error handling in ->create()Eric Biggers2020-03-061-17/+11
* crypto: rsa-pkcs1pad - simplify error handling in pkcs1pad_create()Eric Biggers2020-03-061-39/+20
* crypto: pcrypt - simplify error handling in pcrypt_create_aead()Eric Biggers2020-03-061-24/+9
* crypto: lrw - simplify error handling in create()Eric Biggers2020-03-061-17/+11
* crypto: geniv - simply error handling in aead_geniv_alloc()Eric Biggers2020-03-061-12/+5
* crypto: gcm - simplify error handling in crypto_rfc4543_create()Eric Biggers2020-03-061-25/+12
* crypto: gcm - simplify error handling in crypto_rfc4106_create()Eric Biggers2020-03-061-20/+9
* crypto: cts - simplify error handling in crypto_cts_create()Eric Biggers2020-03-061-19/+8
* crypto: ctr - simplify error handling in crypto_rfc3686_create()Eric Biggers2020-03-061-20/+9
* crypto: cryptd - simplify error handling in cryptd_create_*()Eric Biggers2020-03-061-26/+11
* crypto: ccm - simplify error handling in crypto_rfc4309_create()Eric Biggers2020-03-061-20/+9
* crypto: authencesn - fix weird comma-terminated lineEric Biggers2020-03-061-1/+1
* crypto: md5 - remove unused macrosYueHaibing2020-02-281-3/+0
* crypto: tcrypt - fix printed skcipher [a]sync modeHoria Geantă2020-02-131-2/+2
* crypto: proc - simplify the c_show functionTianjia Zhang2020-02-131-1/+1
* crypto: rng - Fix a refcounting bug in crypto_rng_reset()Dan Carpenter2020-02-131-2/+6
* treewide: remove redundant IS_ERR() before error code checkMasahiro Yamada2020-02-041-1/+1
* Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert...Linus Torvalds2020-01-2864-1370/+1267
|\
| * crypto: essiv - fix AEAD capitalization and preposition use in help textGeert Uytterhoeven2020-01-161-2/+2
| * crypto: poly1305 - add new 32 and 64-bit generic versionsJason A. Donenfeld2020-01-163-4/+27
| * crypto: algapi - enforce that all instances have a ->free() methodEric Biggers2020-01-095-0/+14
| * crypto: algapi - remove crypto_template::{alloc,free}()Eric Biggers2020-01-095-31/+1
| * crypto: shash - convert shash_free_instance() to new styleEric Biggers2020-01-096-14/+19
| * crypto: cryptd - convert to new way of freeing instancesEric Biggers2020-01-091-22/+20
| * crypto: geniv - convert to new way of freeing instancesEric Biggers2020-01-093-39/+16
| * crypto: hash - add support for new way of freeing instancesEric Biggers2020-01-092-0/+26
| * crypto: algapi - fold crypto_init_spawn() into crypto_grab_spawn()Eric Biggers2020-01-091-29/+14
| * crypto: ahash - unexport crypto_ahash_typeEric Biggers2020-01-091-2/+3
| * crypto: algapi - remove obsoleted instance creation helpersEric Biggers2020-01-093-101/+0
| * crypto: cipher - make crypto_spawn_cipher() take a crypto_cipher_spawnEric Biggers2020-01-096-6/+6
| * crypto: xcbc - use crypto_grab_cipher() and simplify error pathsEric Biggers2020-01-091-22/+16
| * crypto: vmac - use crypto_grab_cipher() and simplify error pathsEric Biggers2020-01-091-18/+15
| * crypto: cmac - use crypto_grab_cipher() and simplify error pathsEric Biggers2020-01-091-18/+15
| * crypto: cbcmac - use crypto_grab_cipher() and simplify error pathsEric Biggers2020-01-091-18/+15
| * crypto: skcipher - use crypto_grab_cipher() and simplify error pathsEric Biggers2020-01-091-24/+15
| * crypto: chacha20poly1305 - use crypto_grab_ahash() and simplify error pathsEric Biggers2020-01-091-57/+27
| * crypto: ccm - use crypto_grab_ahash() and simplify error pathsEric Biggers2020-01-091-41/+20
| * crypto: gcm - use crypto_grab_ahash() and simplify error pathsEric Biggers2020-01-091-36/+16
| * crypto: authencesn - use crypto_grab_ahash() and simplify error pathsEric Biggers2020-01-091-38/+14
| * crypto: authenc - use crypto_grab_ahash() and simplify error pathsEric Biggers2020-01-091-38/+14
| * crypto: hmac - use crypto_grab_shash() and simplify error pathsEric Biggers2020-01-091-17/+16
| * crypto: cryptd - use crypto_grab_shash() and simplify error pathsEric Biggers2020-01-091-50/+18
| * crypto: adiantum - use crypto_grab_{cipher,shash} and simplify error pathsEric Biggers2020-01-091-60/+25
| * crypto: ahash - introduce crypto_grab_ahash()Eric Biggers2020-01-091-0/+9
| * crypto: shash - introduce crypto_grab_shash()Eric Biggers2020-01-091-0/+9
| * crypto: algapi - pass instance to crypto_grab_spawn()Eric Biggers2020-01-095-12/+9
| * crypto: akcipher - pass instance to crypto_grab_akcipher()Eric Biggers2020-01-092-5/+9
| * crypto: aead - pass instance to crypto_grab_aead()Eric Biggers2020-01-097-20/+26