aboutsummaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/sha3.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/c/sha3.c b/c/sha3.c
index ba81e5a..d7f317f 100644
--- a/c/sha3.c
+++ b/c/sha3.c
@@ -379,17 +379,6 @@ extern void initialise(long r, long c, long n)
/**
* Absorb the more of the message message to the Keccak sponge
*
- * @param msg The partial message
- */
-extern void update(byte* msg)
-{
- update(msg, msg.length);
-}
-
-
-/**
- * Absorb the more of the message message to the Keccak sponge
- *
* @param msg The partial message
* @param msglen The length of the partial message
*/
@@ -484,17 +473,6 @@ extern byte* digest()
/**
* Absorb the last part of the message and squeeze the Keccak sponge
*
- * @param msg The rest of the message
- */
-extern byte* digest(byte* msg)
-{
- return digest(msg, msg == null ? 0 : msg.length);
-}
-
-
-/**
- * Absorb the last part of the message and squeeze the Keccak sponge
- *
* @param msg The rest of the message
* @param msglen The length of the partial message
*/