aboutsummaryrefslogtreecommitdiffstats
path: root/lib/crypto/sha256.c
AgeCommit message (Expand)AuthorFilesLines
2025-10-29lib/crypto: Add FIPS self-tests for SHA-1 and SHA-2Eric Biggers1-4/+22
2025-09-17lib/crypto: sha256: Add support for 2-way interleaved hashingEric Biggers1-5/+66
2025-07-14lib/crypto: sha2: Add hmac_sha*_init_usingrawkey()Eric Biggers1-17/+36
2025-07-04lib/crypto: sha256: Sync sha256_update() with sha512_update()Eric Biggers1-3/+25
2025-07-04lib/crypto: sha256: Consolidate into single moduleEric Biggers1-14/+132
2025-07-04lib/crypto: sha256: Add HMAC-SHA224 and HMAC-SHA256 supportEric Biggers1-5/+142
2025-07-04lib/crypto: sha256: Make library API use strongly-typed contextsEric Biggers1-27/+73
2025-07-04lib/crypto: sha256: Add sha224() and sha224_update()Eric Biggers1-0/+10
2025-07-04lib/crypto: sha256: Reorder some codeEric Biggers1-6/+6
2025-06-30lib/crypto: Explicitly include <linux/export.h>Eric Biggers1-0/+1
2025-05-05crypto: lib/sha256 - Use generic block helperHerbert Xu1-61/+10
2025-05-05crypto: lib/sha256 - Add helpers for block-based shashHerbert Xu1-23/+9
2025-05-05crypto: lib/sha256 - improve function prototypesEric Biggers1-4/+4
2025-05-05crypto: sha256 - support arch-optimized lib and expose through shashEric Biggers1-109/+87
2025-04-23crypto: sha256_base - Remove partial block helpersHerbert Xu1-9/+2
2025-04-23crypto: riscv/sha256 - Use API partial block handlingHerbert Xu1-5/+13
2024-10-02move asm/unaligned.h to linux/unaligned.hAl Viro1-1/+1
2024-06-21crypto: lib - add missing MODULE_DESCRIPTION() macrosJeff Johnson1-0/+1
2023-05-19crypto: lib/sha256 - Use generic code from sha256_baseHerbert Xu1-54/+19
2023-05-19crypto: lib/sha256 - Remove redundant and unused sha224_updateHerbert Xu1-6/+0
2020-11-20crypto: sha - split sha.h into sha1.h and sha2.hEric Biggers1-1/+1
2020-10-30crypto: lib/sha256 - Unroll LOAD and BLEND loopsArvind Sankar1-4/+20
2020-10-30crypto: lib/sha256 - Unroll SHA256 loop 8 times intead of 64Arvind Sankar1-136/+38
2020-10-30crypto: lib/sha256 - Clear W[] in sha256_update() instead of sha256_transform()Arvind Sankar1-6/+5
2020-10-30crypto: lib/sha256 - Don't clear temporary variablesArvind Sankar1-1/+0
2020-10-30crypto: lib/sha256 - Use memzero_explicit() for clearing stateArvind Sankar1-1/+1
2020-07-16crypto: lib/sha256 - add sha256() functionEric Biggers1-0/+10
2020-05-08crypto: lib/sha256 - return voidEric Biggers1-12/+8
2019-09-05crypto: sha256 - Remove sha256/224_init code duplicationHans de Goede1-32/+0
2019-09-05crypto: sha256 - Merge crypto/sha256.h into crypto/sha.hHans de Goede1-1/+1
2019-08-30crypto: sha256 - Add missing MODULE_LICENSE() to lib/crypto/sha256.cHans de Goede1-0/+3
2019-08-22crypto: sha256 - Add sha224 support to sha256 library codeHans de Goede1-2/+35
2019-08-22crypto: sha256 - Make lib/crypto/sha256.c suitable for generic useHans de Goede1-0/+4
2019-08-22crypto: sha256 - Use get/put_unaligned_be32 to get input, memzero_explicitHans de Goede1-4/+4
2019-08-22crypto: sha256 - Move lib/sha256.c to lib/cryptoHans de Goede1-0/+279