diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-10-07 01:52:59 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-10-07 01:52:59 +0200 |
commit | 5d648db4a6ce8cc94d2378af56c28c4bcfcf8073 (patch) | |
tree | 9ea0f855ca1011c2e071555dc582463e901b0dcc | |
parent | add libkeccak_fast_update.3 and libkeccak_update.3 (diff) | |
download | libkeccak-5d648db4a6ce8cc94d2378af56c28c4bcfcf8073.tar.gz libkeccak-5d648db4a6ce8cc94d2378af56c28c4bcfcf8073.tar.bz2 libkeccak-5d648db4a6ce8cc94d2378af56c28c4bcfcf8073.tar.xz |
m doc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | src/libkeccak/digest.c | 4 | ||||
-rw-r--r-- | src/libkeccak/digest.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/libkeccak/digest.c b/src/libkeccak/digest.c index 01a600a..7acc867 100644 --- a/src/libkeccak/digest.c +++ b/src/libkeccak/digest.c @@ -436,7 +436,7 @@ int libkeccak_update(libkeccak_state_t* restrict state, const char* restrict msg * without wiping sensitive data when possible * * @param state The hashing state - * @param msg The rest of the message, may be `NULL`, may be modified + * @param msg The rest of the message, may be `NULL` * @param msglen The length of the partial message * @param bits The number of bits at the end of the message not covered by `msglen` * @param suffix The suffix concatenate to the message, only '1':s and '0':s, and NUL-termination @@ -505,7 +505,7 @@ int libkeccak_fast_digest(libkeccak_state_t* restrict state, const char* restric * and wipe sensitive data when possible * * @param state The hashing state - * @param msg The rest of the message, may be `NULL`, may be modified + * @param msg The rest of the message, may be `NULL` * @param msglen The length of the partial message * @param bits The number of bits at the end of the message not covered by `msglen` * @param suffix The suffix concatenate to the message, only '1':s and '0':s, and NUL-termination diff --git a/src/libkeccak/digest.h b/src/libkeccak/digest.h index 51a5a6c..a6a2351 100644 --- a/src/libkeccak/digest.h +++ b/src/libkeccak/digest.h @@ -55,7 +55,7 @@ int libkeccak_update(libkeccak_state_t* restrict state, const char* restrict msg * without wiping sensitive data when possible * * @param state The hashing state - * @param msg The rest of the message, may be `NULL`, may be modified + * @param msg The rest of the message, may be `NULL` * @param msglen The length of the partial message * @param bits The number of bits at the end of the message not covered by `msglen` * @param suffix The suffix concatenate to the message, only '1':s and '0':s, and NUL-termination @@ -72,7 +72,7 @@ int libkeccak_fast_digest(libkeccak_state_t* restrict state, const char* restric * and wipe sensitive data when possible * * @param state The hashing state - * @param msg The rest of the message, may be `NULL`, may be modified + * @param msg The rest of the message, may be `NULL` * @param msglen The length of the partial message * @param bits The number of bits at the end of the message not covered by `msglen` * @param suffix The suffix concatenate to the message, only '1':s and '0':s, and NUL-termination |