summaryrefslogtreecommitdiff
path: root/sha256-compress.c
Commit message (Collapse)AuthorAgeFilesLines
* abi: explicitly export intended symbols and hide othersNikos Mavrogiannopoulos2018-07-071-0/+1
| | | | | | | | | | | | | This adds all exported symbols in the map files explicitly under the following rules: - Symbols mentioned in internal headers go in a section which is valid only for testing, and linking with these symbols will break in library updates. - Symbols mentioned in installed headers go in the exported sections and are considered part of the ABI. - All internal symbols move to internal headers. - The _nettle_md5_compress and _nettle_sha1_compress become exported without the _nettle prefix, due to existing usage.
* Prepare for additional fat functions.Niels Möller2015-01-251-0/+7
|
* Update copyright headers for dual licensing.Niels Möller2014-04-121-23/+31
|
* Generate SHA256 intermediate values.Niels Möller2013-03-111-20/+39
|
* Eliminated a temporary in the SHA256 round.Niels Möller2013-03-111-5/+5
|
* Replaced all internal usage of sha.h.Niels Möller2012-12-021-1/+1
|
* Updated FSF address. Patch from David Woodhouse.Niels Möller2012-07-071-2/+2
|
* Use ROTL32 in the sha256 code.Niels Möller2012-03-311-7/+4
|
* Converted files to utf-8.Niels Möller2012-02-181-1/+1
|
* * Makefile.in (nettle_SOURCES): Added sha256-compress.c.Niels Möller2010-03-241-0/+168
* sha256.c: Reorganized to use _nettle_sha256_compress. * sha256-compress.c (_nettle_sha256_compress): Compression function extracted from sha256.c to a new file. Rev: nettle/ChangeLog:1.56 Rev: nettle/Makefile.in:1.17 Rev: nettle/sha.h:1.3 Rev: nettle/sha256-compress.c:1.1 Rev: nettle/sha256.c:1.4