aboutsummaryrefslogtreecommitdiff
path: root/crypto/testmgr.c
AgeCommit message (Expand)AuthorFilesLines
2021-08-21crypto: testmgr - Add GCM/CCM mode test of SM4 algorithmGravatar Tianjia Zhang 1-0/+29
2021-06-28crypto: drbg - self test for HMAC(SHA-512)Gravatar Stephan Müller 1-1/+4
2021-05-28crypto: ecdh - add test suite for NIST P384Gravatar Hui Tang 1-0/+7
2021-05-28crypto: ecdh - fix ecdh-nist-p192's entry in testmgrGravatar Hui Tang 1-3/+0
2021-03-26Merge branch 'ecc'Gravatar Herbert Xu 1-0/+18
2021-03-26crypto: ecdsa - Register NIST P384 and extend test suiteGravatar Saulo Alessandre 1-0/+6
2021-03-26crypto: ecdsa - Add support for ECDSA signature verificationGravatar Stefan Berger 1-0/+12
2021-03-13crypto: ecdh - move curve_id of ECDH from the key to algorithm nameGravatar Meng Yu 1-2/+11
2021-03-07crypto: testmgr - delete some redundant codeGravatar Kai Ye 1-8/+3
2021-02-10crypto: serpent - get rid of obsolete tnepres variantGravatar Ard Biesheuvel 1-6/+0
2021-01-29crypto: salsa20 - remove Salsa20 stream cipher algorithmGravatar Ard Biesheuvel 1-6/+0
2021-01-29crypto: tgr192 - remove Tiger 128/160/192 hash algorithmsGravatar Ard Biesheuvel 1-18/+0
2021-01-29crypto: rmd320 - remove RIPE-MD 320 hash algorithmGravatar Ard Biesheuvel 1-6/+0
2021-01-29crypto: rmd256 - remove RIPE-MD 256 hash algorithmGravatar Ard Biesheuvel 1-6/+0
2021-01-29crypto: rmd128 - remove RIPE-MD 128 hash algorithmGravatar Ard Biesheuvel 1-12/+0
2021-01-03crypto: remove cipher routines from public crypto APIGravatar Ard Biesheuvel 1-0/+3
2020-11-06crypto: testmgr - WARN on test failureGravatar Eric Biggers 1-7/+13
2020-11-06crypto: testmgr - always print the actual skcipher driver nameGravatar Eric Biggers 1-20/+16
2020-11-06crypto: testmgr - always print the actual AEAD driver nameGravatar Eric Biggers 1-24/+18
2020-11-06crypto: testmgr - always print the actual hash driver nameGravatar Eric Biggers 1-23/+20
2020-09-25crypto: sm2 - add SM2 test vectors to testmgrGravatar Tianjia Zhang 1-0/+6
2020-09-25crypto: testmgr - Fix potential memory leak in test_akcipher_one()Gravatar Tianjia Zhang 1-4/+7
2020-09-25crypto: testmgr - support test with different ciphertext per encryptionGravatar Tianjia Zhang 1-1/+6
2020-08-20crypto: algapi - Remove skbuff.h inclusionGravatar Herbert Xu 1-0/+1
2020-08-07mm, treewide: rename kzfree() to kfree_sensitive()Gravatar Waiman Long 1-3/+3
2020-04-01Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert...Gravatar Linus Torvalds 1-11/+17
2020-03-12crypto: testmgr - do comparison tests before inauthentic input testsGravatar Eric Biggers 1-2/+2
2020-03-12crypto: testmgr - use consistent IV copies for AEADs that need itGravatar Eric Biggers 1-9/+15
2020-02-13crypto/testmgr: enable selftests for paes-s390 ciphersGravatar Harald Freudenberger 1-0/+36
2019-12-11crypto: testmgr - generate inauthentic AEAD test vectorsGravatar Eric Biggers 1-69/+251
2019-12-11crypto: testmgr - create struct aead_extra_tests_ctxGravatar Eric Biggers 1-71/+99
2019-12-11crypto: testmgr - test setting misaligned keysGravatar Eric Biggers 1-4/+69
2019-12-11crypto: testmgr - check skcipher min_keysizeGravatar Eric Biggers 1-0/+9
2019-12-11crypto: testmgr - don't try to decrypt uninitialized buffersGravatar Eric Biggers 1-4/+16
2019-12-11crypto: skcipher - remove crypto_skcipher::keysizeGravatar Eric Biggers 1-4/+6
2019-11-17crypto: curve25519 - add kpp selftestGravatar Ard Biesheuvel 1-0/+6
2019-11-17crypto: testmgr - add test cases for Blake2sGravatar Ard Biesheuvel 1-0/+24
2019-11-01crypto: testmgr - add test vectors for blake2bGravatar David Sterba 1-0/+28
2019-10-05crypto: testmgr - Added testvectors for the rfc3686(ctr(sm4)) skcipherGravatar Pascal van Leeuwen 1-0/+6
2019-10-05crypto: testmgr - Added testvectors for the ofb(sm4) & cfb(sm4) skciphersGravatar Pascal van Leeuwen 1-0/+12
2019-10-05crypto: testmgr - Added testvectors for the hmac(sm3) ahashGravatar Pascal van Leeuwen 1-0/+6
2019-08-30crypto: essiv - add tests for essiv in cbc(aes)+sha256 modeGravatar Ard Biesheuvel 1-0/+14
2019-07-26crypto: aegis128l/aegis256 - remove x86 and generic implementationsGravatar Ard Biesheuvel 1-12/+0
2019-07-26crypto: morus - remove generic and x86 implementationsGravatar Ard Biesheuvel 1-12/+0
2019-07-26crypto: testmgr - add tests for lzo-rleGravatar Hannah Pan 1-0/+10
2019-07-26crypto: fips - add FIPS test failure notification chainGravatar Gilad Ben-Yossef 1-1/+3
2019-07-08Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert...Gravatar Linus Torvalds 1-84/+394
2019-06-27crypto: testmgr - dynamically allocate crypto_shashGravatar Arnd Bergmann 1-6/+13
2019-06-27crypto: testmgr - dynamically allocate testvec_configGravatar Arnd Bergmann 1-11/+32
2019-06-20crypto: arc4 - remove cipher implementationGravatar Ard Biesheuvel 1-0/+1