index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libc
/
hash
/
sha2.c
Age
Commit message (
Expand
)
Author
2017-05-27
move sha224_initial_hash_value[] under !SHA2_SMALL; ok deraadt@ millert@
Christian Weisgerber
2016-09-03
Add functions for SHA512/256. The standard says you're supposed to start
Ted Unangst
2015-09-11
Wrap blowfish, sha*, md5, and rmd160 so that internal calls go direct
Philip Guenther
2015-01-15
Use explicit_bzero instead of memset in hash Final and End functions.
Todd C. Miller
2014-12-19
be like the kernel and only unroll if not small
Ted Unangst
2014-12-19
i386 unrolling blows up the media in a big way, due to -Os for
Theo de Raadt
2014-12-18
only unroll on i386 and amd64 (where confirmed to be much faster).
Ted Unangst
2014-12-17
unroll loops. much faster on amd64. ok deraadt millert
Ted Unangst
2014-07-20
From ISO/IEC 9899:1999 and 9899:201x,
Philip Guenther
2014-01-08
calling HashFinal with a null digest should crash, not be silently ignored
Ted Unangst
2014-01-08
rename SHA256_ONLY to SHA2_SMALL; changing things so that sha512 support
Theo de Raadt
2013-12-22
remove unneeded check for null context. ok deraadt gilles millert
Ted Unangst
2013-04-15
SHA-224 is to SHA-256 as SHA-384 is to SHA-512. It was added in a
Todd C. Miller
2009-04-15
allow building without SHA384 and SHA512 (i.e. SHA256 only) with
Damien Miller
2008-09-06
Rename SHA256/384/512 API to avoid namespace collisions with
Damien Miller
2005-08-08
zap remaining rcsid.
Marc Espie
2004-05-28
In the Final function, move the context zeroing into the digest != NULL
Todd C. Miller
2004-05-07
Simpler byte order flipping. Now the only place we explicitly check
Todd C. Miller
2004-05-05
Make the Transform functions match the other hash types and document them.
Todd C. Miller
2004-05-03
Add Pad and FileChunk functions for each family of hash functions.
Todd C. Miller
2004-05-03
Rev 1.4 was bogus (committed from the wrong tree), this repairs it.
Todd C. Miller
2004-05-02
some minor KNF
Todd C. Miller
2004-04-29
The data pointer passed to the transform function may not be properly
Todd C. Miller
2004-04-28
KNF: function names should be at column 0 for easier grepping.
Todd C. Miller
2003-09-08
Zap context correctly, from Juergen Buchmueller <pullmoll at stop1984 dot com>
Todd C. Miller
2003-05-08
Add sha2 routines based on code by Aaron D. Gifford with minor
Todd C. Miller