aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-10-07 01:52:59 +0200
committerMattias Andrée <maandree@operamail.com>2015-10-07 01:52:59 +0200
commit5d648db4a6ce8cc94d2378af56c28c4bcfcf8073 (patch)
tree9ea0f855ca1011c2e071555dc582463e901b0dcc /src
parentadd libkeccak_fast_update.3 and libkeccak_update.3 (diff)
downloadlibkeccak-5d648db4a6ce8cc94d2378af56c28c4bcfcf8073.tar.gz
libkeccak-5d648db4a6ce8cc94d2378af56c28c4bcfcf8073.tar.bz2
libkeccak-5d648db4a6ce8cc94d2378af56c28c4bcfcf8073.tar.xz
m doc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rw-r--r--src/libkeccak/digest.c4
-rw-r--r--src/libkeccak/digest.h4
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