diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-08-21 19:15:47 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-08-21 19:15:47 +0200 |
commit | 541a52d4b161205ff431f5d2b6a28938be76717d (patch) | |
tree | 1fea3ea113e6408d5e5df677bc625edbe5b5503d /java | |
parent | fix error in partial bit support for c implementations (diff) | |
download | sha3sum-541a52d4b161205ff431f5d2b6a28938be76717d.tar.gz sha3sum-541a52d4b161205ff431f5d2b6a28938be76717d.tar.bz2 sha3sum-541a52d4b161205ff431f5d2b6a28938be76717d.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'java')
-rw-r--r-- | java/sha3sum.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/java/sha3sum.java b/java/sha3sum.java index c3c63a5..7d70caf 100644 --- a/java/sha3sum.java +++ b/java/sha3sum.java @@ -95,19 +95,19 @@ public class sha3sum System.out.println(""); System.out.println("OPTIONS:"); System.out.println(" -r BITRATE"); - System.out.println(" --bitrate The bitrate to use for SHA-3. (default: " + _r + ")"); + System.out.println(" --bitrate The bitrate to use for ckecksum. (default: " + _r + ")"); System.out.println(" "); System.out.println(" -c CAPACITY"); - System.out.println(" --capacity The capacity to use for SHA-3. (default: " + _c + ")"); + System.out.println(" --capacity The capacity to use for checksum. (default: " + _c + ")"); System.out.println(" "); System.out.println(" -w WORDSIZE"); - System.out.println(" --wordsize The word size to use for SHA-3. (default: " + _w + ")"); + System.out.println(" --wordsize The word size to use for checksum. (default: " + _w + ")"); System.out.println(" "); System.out.println(" -o OUTPUTSIZE"); - System.out.println(" --outputsize The output size to use for SHA-3. (default: " + _o + ")"); + System.out.println(" --outputsize The output size to use for checksum. (default: " + _o + ")"); System.out.println(" "); System.out.println(" -s STATESIZE"); - System.out.println(" --statesize The state size to use for SHA-3. (default: " + _s + ")"); + System.out.println(" --statesize The state size to use for checksum. (default: " + _s + ")"); System.out.println(" "); System.out.println(" -i ITERATIONS"); System.out.println(" --iterations The number of hash iterations to run. (default: " + _i + ")"); |