aboutsummaryrefslogtreecommitdiffstats
path: root/java/sha3sum.java (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-12-07Remove used of unportable \+ in sed scriptMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2023-07-05Remove -Wall -O3 from CFLAGSMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2023-07-02Make makefile portable1.2.3Mattias Andrée4-56/+78
Signed-off-by: Mattias Andrée <maandree@kth.se>
2022-07-18Update link to libkeccak in DEPENDENCIESMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2022-03-25Bump yearMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2022-03-25Style fixMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2022-03-25Remove unnecessary call to closeMattias Andrée1-1/+0
Signed-off-by: Mattias Andrée <maandree@kth.se>
2022-03-25Fix github issue #341.2.2Mattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2022-02-26Add support for new spec error in libkeccakMattias Andrée2-12/+14
Signed-off-by: Mattias Andrée <maandree@kth.se>
2022-02-26Add shake128sum and rawshake128sumMattias Andrée4-0/+10
Signed-off-by: Mattias Andrée <maandree@kth.se>
2021-02-18Update clean rule in Makefile1.2.1Mattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2020-11-04Do not use -i option with sed(1), not in POSIXMattias Andrée1-3/+2
Signed-off-by: Mattias Andrée <maandree@kth.se>
2020-10-22Update readmeMattias Andrée1-0/+6
Signed-off-by: Mattias Andrée <maandree@kth.se>
2020-10-21Update year in LICENSEMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2020-10-21Use lowercase by default1.2Mattias Andrée3-70/+72
Signed-off-by: Mattias Andrée <maandree@kth.se>
2020-10-21test: check that -c accepts both uppercase and lowercaseMattias Andrée1-6/+6
Signed-off-by: Mattias Andrée <maandree@kth.se>
2020-10-21Add multicall binary optionMattias Andrée4-3/+61
Signed-off-by: Mattias Andrée <maandree@kth.se>
2020-10-21Update test for -zMattias Andrée1-1/+26
Signed-off-by: Mattias Andrée <maandree@kth.se>
2020-10-21Add sha3sum for compatibility with busybox (-w and -s are however not support)Mattias Andrée6-5/+128
Signed-off-by: Mattias Andrée <maandree@kth.se>
2020-10-21Add -zMattias Andrée3-36/+72
Signed-off-by: Mattias Andrée <maandree@kth.se>
2020-10-21Fix typo in man pageMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2019-02-14Deps: requires libkeccak>=1.2 to buildMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2019-02-11Update for libkeccak 1.21.1.5Mattias Andrée2-28/+28
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-11-18Fix typo1.1.4Mattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-11-15Validate input given with -x is specified1.1.3Mattias Andrée1-5/+10
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-11-15Fix buffer overflowMattias Andrée1-1/+2
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-10-19Fix arg.h1.1.2Mattias Andrée1-33/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-10-15make check: build binaries1.1.1Mattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-10-15Makefile: use "rm -f" upon cleaning and uninstallingLeo Izen1-5/+4
The coreutil "rm" will by default exit with failure if it is instructed to remove a file that doesn't exist. Using "rm -f" will suppress this behavior, so "rm" will exit with success whether or not the file had existed before invoking "rm -f".
2017-10-15test: use POSIX-compliant printfLeo Izen1-1/+1
The test shell script had previously used \x notation, which is not POSIX-compliant and therefore is "undefined behavior." In this case, the script will fail if /bin/sh is DASH or some other minimal shell. This commit replaces the hexadecimal \x notation with \ddd octal notation, which is strictly POSIX-compliant and will work in any POSIX shell located at /bin/sh.
2017-10-15Fix dependencies in makefile1.1Mattias Andrée3-4/+3
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-10-15Add testMattias Andrée4-8/+131
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-10-15Improve the codeMattias Andrée3-220/+215
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-10-14Generate all C files except common.c and keccaksum.cMattias Andrée17-150/+36
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-10-14Use arg.h instead of argparserMattias Andrée18-151/+219
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-10-14Update readmeMattias Andrée1-39/+37
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-10-14Simplify makefileMattias Andrée18-107/+60
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-10-14Do not use texmanMattias Andrée4-117/+117
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-10-14Change license, change style, and remove crapMattias Andrée29-2525/+489
Signed-off-by: Mattias Andrée <maandree@kth.se>
2017-05-31move `-lkeccak -largparse` to the end of the linking instructionJakub Hlusička1-1/+1
2015-11-28improve readmeMattias Andrée1-87/+124
Signed-off-by: Mattias Andrée <maandree@operamail.com>
2015-08-15distMattias Andrée3-0/+52
Signed-off-by: Mattias Andrée <maandree@operamail.com>
2015-08-15sha-3 is now standardised1.0Mattias Andrée1-4/+0
Signed-off-by: Mattias Andrée <maandree@operamail.com>
2015-04-06fix currency problem with building the texinfo manual to all forms when building with -jMattias Andrée1-12/+12
Signed-off-by: Mattias Andrée <maandree@operamail.com>
2015-03-28readme: testingMattias Andrée1-0/+10
Signed-off-by: Mattias Andrée <maandree@operamail.com>
2014-12-03typoMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@operamail.com>
2014-11-27typoMattias Andrée1-1/+1
Signed-off-by: Mattias Andrée <maandree@operamail.com>