aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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