aboutsummaryrefslogtreecommitdiff
path: root/lib/crypto
AgeCommit message (Expand)AuthorFilesLines
2021-09-17crypto: sm4 - Do not change section of ck and sboxGravatar Nathan Chancellor 1-2/+2
2021-07-30crypto: arm64/sm4-ce - Make dependent on sm4 library instead of sm4-genericGravatar Tianjia Zhang 1-1/+1
2021-07-30crypto: sm4 - create SM4 library based on sm4 generic codeGravatar Tianjia Zhang 3-0/+182
2021-07-16crypto: lib - rename 'mod_init' & 'mod_exit' functions to be module-specificGravatar Randy Dunlap 3-12/+12
2021-04-22crypto: doc - fix kernel-doc notation in chacha.c and af_alg.cGravatar Randy Dunlap 1-2/+2
2021-04-02crypto: poly1305 - fix poly1305_core_setkey() declarationGravatar Arnd Bergmann 3-3/+6
2021-01-22crypto: lib/chacha20poly1305 - define empty module exit functionGravatar Jason A. Donenfeld 1-0/+5
2021-01-03crypto: blake2s - move update and final logic to internal/blake2s.hGravatar Eric Biggers 1-40/+8
2020-12-04crypto: lib/blake2s - Move selftest prototype into header fileGravatar Herbert Xu 2-3/+1
2020-11-20crypto: lib/curve25519 - Move selftest prototype into header fileGravatar Herbert Xu 1-2/+0
2020-11-20crypto: sha - split sha.h into sha1.h and sha2.hGravatar Eric Biggers 1-1/+1
2020-10-30crypto: lib/sha256 - Unroll LOAD and BLEND loopsGravatar Arvind Sankar 1-4/+20
2020-10-30crypto: lib/sha256 - Unroll SHA256 loop 8 times intead of 64Gravatar Arvind Sankar 1-136/+38
2020-10-30crypto: lib/sha256 - Clear W[] in sha256_update() instead of sha256_transform()Gravatar Arvind Sankar 1-6/+5
2020-10-30crypto: lib/sha256 - Don't clear temporary variablesGravatar Arvind Sankar 1-1/+0
2020-10-30crypto: lib/sha256 - Use memzero_explicit() for clearing stateGravatar Arvind Sankar 1-1/+1
2020-09-25crypto: lib/chacha20poly1305 - Set SG_MITER_ATOMIC unconditionallyGravatar Herbert Xu 1-3/+1
2020-07-16crypto: lib/sha256 - add sha256() functionGravatar Eric Biggers 1-0/+10
2020-07-16crypto: lib/chacha20poly1305 - Add missing function declarationGravatar Herbert Xu 1-2/+0
2020-05-08crypto: lib/sha1 - remove unnecessary includes of linux/cryptohash.hGravatar Eric Biggers 1-1/+0
2020-05-08crypto: lib/sha256 - return voidGravatar Eric Biggers 1-12/+8
2020-03-20crypto: arm64/chacha - correctly walk through blocksGravatar Jason A. Donenfeld 1-3/+8
2020-02-14crypto: chacha20poly1305 - prevent integer overflow on large inputGravatar Jason A. Donenfeld 1-0/+3
2020-01-22crypto: chacha20poly1305 - add back missing test vectors and test chunkingGravatar Jason A. Donenfeld 1-14/+1698
2020-01-16crypto: curve25519 - Fix selftest build errorGravatar Herbert Xu 3-10/+30
2020-01-16crypto: x86/poly1305 - wire up faster implementations for kernelGravatar Jason A. Donenfeld 1-1/+1
2020-01-16crypto: poly1305 - add new 32 and 64-bit generic versionsGravatar Jason A. Donenfeld 4-163/+399
2019-12-27crypto: lib/curve25519 - re-add selftestsGravatar Jason A. Donenfeld 3-0/+1339
2019-11-22crypto: lib/chacha20poly1305 - use chacha20_crypt()Gravatar Eric Biggers 1-8/+8
2019-11-17crypto: lib/chacha20poly1305 - reimplement crypt_from_sg() routineGravatar Ard Biesheuvel 2-0/+195
2019-11-17crypto: chacha20poly1305 - import construction and selftest from ZincGravatar Ard Biesheuvel 4-0/+7578
2019-11-17crypto: lib/curve25519 - work around Clang stack spilling issueGravatar Ard Biesheuvel 1-5/+5
2019-11-17crypto: curve25519 - generic C library implementationsGravatar Jason A. Donenfeld 5-0/+1707
2019-11-17crypto: blake2s - generic C library implementation and selftestGravatar Jason A. Donenfeld 5-0/+894
2019-11-17crypto: mips/poly1305 - incorporate OpenSSL/CRYPTOGAMS optimized implementationGravatar Ard Biesheuvel 1-0/+1
2019-11-17crypto: arm/poly1305 - incorporate OpenSSL/CRYPTOGAMS NEON implementationGravatar Ard Biesheuvel 1-1/+1
2019-11-17crypto: arm64/poly1305 - incorporate OpenSSL/CRYPTOGAMS NEON implementationGravatar Ard Biesheuvel 1-0/+1
2019-11-17crypto: x86/poly1305 - expose existing driver as poly1305 libraryGravatar Ard Biesheuvel 1-0/+1
2019-11-17crypto: poly1305 - expose init/update/final library interfaceGravatar Ard Biesheuvel 2-0/+100
2019-11-17crypto: poly1305 - move core routines into a separate libraryGravatar Ard Biesheuvel 3-0/+164
2019-11-17crypto: chacha - move existing library code into lib/cryptoGravatar Ard Biesheuvel 4-0/+180
2019-11-17crypto: lib - tidy up lib/crypto Kconfig and MakefileGravatar Ard Biesheuvel 2-8/+23
2019-09-05crypto: sha256 - Remove sha256/224_init code duplicationGravatar Hans de Goede 1-32/+0
2019-09-05crypto: sha256 - Merge crypto/sha256.h into crypto/sha.hGravatar Hans de Goede 1-1/+1
2019-08-30crypto: sha256 - Add missing MODULE_LICENSE() to lib/crypto/sha256.cGravatar Hans de Goede 1-0/+3
2019-08-22crypto: sha256 - Add sha224 support to sha256 library codeGravatar Hans de Goede 1-2/+35
2019-08-22crypto: sha256 - Make lib/crypto/sha256.c suitable for generic useGravatar Hans de Goede 2-0/+7
2019-08-22crypto: sha256 - Use get/put_unaligned_be32 to get input, memzero_explicitGravatar Hans de Goede 1-4/+4
2019-08-22crypto: sha256 - Move lib/sha256.c to lib/cryptoGravatar Hans de Goede 1-0/+279
2019-08-22crypto: des - split off DES library from generic DES cipher driverGravatar Ard Biesheuvel 2-0/+905