Jay Berkenbilt
|
d55c7ac570
|
Spell check with newer cSpell
|
2022-05-03 18:31:22 -04:00 |
|
Jay Berkenbilt
|
12f1eb15ca
|
Programmatically apply new formatting to code
Run this:
for i in **/*.cc **/*.c **/*.h **/*.hh; do
clang-format < $i >| $i.new && mv $i.new $i
done
|
2022-04-04 08:10:40 -04:00 |
|
Jay Berkenbilt
|
30027481f7
|
Remove all old-style casts from C++ code
|
2013-03-04 16:45:16 -05:00 |
|
Jay Berkenbilt
|
0873e42300
|
SHA2 pipeline with support for 256, 384, and 512 bits
Implemented pipeline around sph sha calls using standard test vectors
for full-byte values. Did not test or support partial byte values.
|
2012-12-31 05:36:51 -05:00 |
|