aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/sha2.cc
AgeCommit message (Collapse)Author
2022-05-04Spell check with newer cSpellJay Berkenbilt
2022-04-04Programmatically apply new formatting to codeJay Berkenbilt
Run this: for i in **/*.cc **/*.c **/*.h **/*.hh; do clang-format < $i >| $i.new && mv $i.new $i done
2013-03-04Remove all old-style casts from C++ codeJay Berkenbilt
2012-12-31SHA2 pipeline with support for 256, 384, and 512 bitsJay Berkenbilt
Implemented pipeline around sph sha calls using standard test vectors for full-byte values. Did not test or support partial byte values.