]> git.tdb.fi Git - libs/crypto.git/log
libs/crypto.git
8 years agoAccount for SHA-512 asking for a 128-bit message length
Mikko Rasa [Sat, 16 Apr 2016 12:44:30 +0000 (15:44 +0300)]
Account for SHA-512 asking for a 128-bit message length

The upper 64 bits are filled with zeroes because 128-bit integers are not
available everywhere and it will be a while before lengths overflowing 64
bits are realistically possible.

8 years agoImplement the SHA2 hash family
Mikko Rasa [Sat, 16 Apr 2016 10:59:38 +0000 (13:59 +0300)]
Implement the SHA2 hash family

8 years agoFix some inline qualifiers
Mikko Rasa [Sat, 16 Apr 2016 10:59:20 +0000 (13:59 +0300)]
Fix some inline qualifiers

8 years agoRemove useless programmatical filling of MD5::rotate_table
Mikko Rasa [Sat, 16 Apr 2016 10:57:29 +0000 (13:57 +0300)]
Remove useless programmatical filling of MD5::rotate_table

The table is so small that static initialization is easier, and in fact
the initializer is already there so the code wasn't even run.

9 years agoInitial version, with MD5
Mikko Rasa [Sun, 14 Dec 2014 08:57:28 +0000 (10:57 +0200)]
Initial version, with MD5