summaryrefslogtreecommitdiffstats
path: root/lib/crypto/sha256.c
Commit message (Expand)AuthorAgeFilesLines
* crypto: sha - split sha.h into sha1.h and sha2.hEric Biggers2020-11-201-1/+1
* crypto: lib/sha256 - Unroll LOAD and BLEND loopsArvind Sankar2020-10-301-4/+20
* crypto: lib/sha256 - Unroll SHA256 loop 8 times intead of 64Arvind Sankar2020-10-301-136/+38
* crypto: lib/sha256 - Clear W[] in sha256_update() instead of sha256_transform()Arvind Sankar2020-10-301-6/+5
* crypto: lib/sha256 - Don't clear temporary variablesArvind Sankar2020-10-301-1/+0
* crypto: lib/sha256 - Use memzero_explicit() for clearing stateArvind Sankar2020-10-301-1/+1
* crypto: lib/sha256 - add sha256() functionEric Biggers2020-07-161-0/+10
* crypto: lib/sha256 - return voidEric Biggers2020-05-081-12/+8
* crypto: sha256 - Remove sha256/224_init code duplicationHans de Goede2019-09-051-32/+0
* crypto: sha256 - Merge crypto/sha256.h into crypto/sha.hHans de Goede2019-09-051-1/+1
* crypto: sha256 - Add missing MODULE_LICENSE() to lib/crypto/sha256.cHans de Goede2019-08-301-0/+3
* crypto: sha256 - Add sha224 support to sha256 library codeHans de Goede2019-08-221-2/+35
* crypto: sha256 - Make lib/crypto/sha256.c suitable for generic useHans de Goede2019-08-221-0/+4
* crypto: sha256 - Use get/put_unaligned_be32 to get input, memzero_explicitHans de Goede2019-08-221-4/+4
* crypto: sha256 - Move lib/sha256.c to lib/cryptoHans de Goede2019-08-221-0/+279