diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-03-27 13:28:03 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-03-27 13:28:03 +0000 |
commit | e17f71f9f01a429664caf120d9ac159ed9f5283f (patch) | |
tree | 524ebfc55d4aa56b2842a109ffffab2319afa6c2 /src/libstdcrypto/sha512_init.c | |
parent | 36333f75234a6cb1b98cbe104aee3506d6bec9a1 (diff) | |
download | skalibs-e17f71f9f01a429664caf120d9ac159ed9f5283f.tar.xz |
- added sha512 (buggy, need to commit to test somewhere else)
- version bump (not a rc yet)
- bugfix: buffer_get returned -1 EPIPE on short reads w/o EOF
Diffstat (limited to 'src/libstdcrypto/sha512_init.c')
-rw-r--r-- | src/libstdcrypto/sha512_init.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libstdcrypto/sha512_init.c b/src/libstdcrypto/sha512_init.c new file mode 100644 index 0000000..33b1d7c --- /dev/null +++ b/src/libstdcrypto/sha512_init.c @@ -0,0 +1,9 @@ +/* ISC license. */ + +#include <skalibs/sha512.h> + +void sha512_init (SHA512Schedule *ctx) +{ + SHA512Schedule empty = SHA512_INIT() ; + *ctx = empty ; +} |