diff options
author | Mattias Andrée <maandree@kth.se> | 2019-02-10 13:48:27 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2019-02-10 13:48:27 +0100 |
commit | 7f5da97d1078fbeee7ef6125802ab2c7092079e0 (patch) | |
tree | b29926c0c1c07ad3cfd543fa3a4eedf5a60b385a /libsha2.h | |
parent | Add test cases (diff) | |
download | libsha2-7f5da97d1078fbeee7ef6125802ab2c7092079e0.tar.gz libsha2-7f5da97d1078fbeee7ef6125802ab2c7092079e0.tar.bz2 libsha2-7f5da97d1078fbeee7ef6125802ab2c7092079e0.tar.xz |
Minor fixes and tests
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | libsha2.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -197,7 +197,7 @@ void libsha2_update(struct libsha2_state *restrict, const char *restrict, size_t #if defined(__GNUC__) __attribute__((__nonnull__(1, 4), __nothrow__)) #endif -void libsha2_digest(struct libsha2_state *restrict, const char *restrict, size_t, char *); +void libsha2_digest(struct libsha2_state *restrict, const char *, size_t, char *); /** * Calculate the checksum for a file, |