aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/sha512.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * bithelp.h, des.c, random.c, rndlinux.c, sha1.c, blowfish.c, elgamal.c,David Shaw2003-05-211-6/+6
| | | | | | | | rijndael.c, rndunix.c, sha256.c, cast5.c, idea-stub.c, rmd160.c, rndw32.c, sha512.c, md5.c, rmd160test.c, rsa.c, tiger.c: Edit all preprocessor instructions to remove whitespace before the '#'. This is not required by C89, but there are some compilers out there that don't like it.
* * sha512.c: Use the U64_C() macro rather than blindly suffixing with LL.David Shaw2003-05-091-44/+57
| | | | | | U64_C is defined in include/types.h and uses the correct suffix depending on the underlying type of u64.
* * sha512.c: Suffix all 64-bit constants with LL. Note this makes thisDavid Shaw2003-05-091-51/+51
| | | | | | file non-c89 compliant. That is okay since we have an autoconf check for this, and many c89 compilers support LL anyway.
* * sha256.c, sha512.c: New.David Shaw2003-02-041-0/+416
* Makefile.am, algorithms.h, md.c (load_digest_module, string_to_digest_algo): Add read-only support for the new SHAs.