aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Empty signed commitHEADmasterMattias Andrée2024-04-060-0/+0
|
* mMattias Andrée2023-12-171-19/+0
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Fix latest commit and prove portability further by replaceing \s with [[:space:]]1.2.3.1Mattias Andrée2023-12-071-2/+2
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Remove used of unportable \+ in sed scriptMattias Andrée2023-12-071-1/+1
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Remove -Wall -O3 from CFLAGSMattias Andrée2023-07-051-1/+1
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Make makefile portable1.2.3Mattias Andrée2023-07-024-56/+78
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Update link to libkeccak in DEPENDENCIESMattias Andrée2022-07-181-1/+1
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Bump yearMattias Andrée2022-03-251-1/+1
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Style fixMattias Andrée2022-03-251-1/+1
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Remove unnecessary call to closeMattias Andrée2022-03-251-1/+0
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Merge branch 'patch'Mattias Andrée2022-03-251-1/+1
|\
| * Fix github issue #341.2.2Mattias Andrée2022-03-251-1/+1
| | | | | | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* | Add support for new spec error in libkeccakMattias Andrée2022-02-262-12/+14
| | | | | | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* | Add shake128sum and rawshake128sumMattias Andrée2022-02-264-0/+10
|/ | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Update clean rule in Makefile1.2.1Mattias Andrée2021-02-181-1/+1
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Do not use -i option with sed(1), not in POSIXMattias Andrée2020-11-041-3/+2
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Update readmeMattias Andrée2020-10-221-0/+6
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Update year in LICENSEMattias Andrée2020-10-211-1/+1
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Use lowercase by default1.2Mattias Andrée2020-10-213-70/+72
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* test: check that -c accepts both uppercase and lowercaseMattias Andrée2020-10-211-6/+6
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Add multicall binary optionMattias Andrée2020-10-214-3/+61
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Update test for -zMattias Andrée2020-10-211-1/+26
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Add sha3sum for compatibility with busybox (-w and -s are however not support)Mattias Andrée2020-10-216-5/+128
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Add -zMattias Andrée2020-10-213-36/+72
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Fix typo in man pageMattias Andrée2020-10-211-1/+1
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Deps: requires libkeccak>=1.2 to buildMattias Andrée2019-02-141-1/+1
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Update for libkeccak 1.21.1.5Mattias Andrée2019-02-112-28/+28
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Fix typo1.1.4Mattias Andrée2017-11-181-1/+1
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Validate input given with -x is specified1.1.3Mattias Andrée2017-11-151-5/+10
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Fix buffer overflowMattias Andrée2017-11-151-1/+2
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Fix arg.h1.1.2Mattias Andrée2017-10-191-33/+1
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* make check: build binaries1.1.1Mattias Andrée2017-10-151-1/+1
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Merge pull request #21 from thebombzen/masterMattias Andrée2017-10-152-6/+5
|\ | | | | Two minor fixes
| * Makefile: use "rm -f" upon cleaning and uninstallingLeo Izen2017-10-151-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".
| * test: use POSIX-compliant printfLeo Izen2017-10-151-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.
* Fix dependencies in makefile1.1Mattias Andrée2017-10-153-4/+3
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Add testMattias Andrée2017-10-154-8/+131
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Improve the codeMattias Andrée2017-10-153-220/+215
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Generate all C files except common.c and keccaksum.cMattias Andrée2017-10-1417-150/+36
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Use arg.h instead of argparserMattias Andrée2017-10-1418-151/+219
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Update readmeMattias Andrée2017-10-141-39/+37
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Simplify makefileMattias Andrée2017-10-1418-107/+60
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Do not use texmanMattias Andrée2017-10-144-117/+117
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Change license, change style, and remove crapMattias Andrée2017-10-1429-2525/+489
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* Merge pull request #17 from Limeth/masterMattias Andrée2017-05-311-1/+1
|\ | | | | move `-lkeccak -largparse` to the end of the linking instruction
| * move `-lkeccak -largparse` to the end of the linking instructionJakub Hlusička2017-05-311-1/+1
|/
* improve readmeMattias Andrée2015-11-281-87/+124
| | | | Signed-off-by: Mattias Andrée <maandree@operamail.com>
* distMattias Andrée2015-08-153-0/+52
| | | | Signed-off-by: Mattias Andrée <maandree@operamail.com>
* sha-3 is now standardised1.0Mattias Andrée2015-08-151-4/+0
| | | | Signed-off-by: Mattias Andrée <maandree@operamail.com>
* fix currency problem with building the texinfo manual to all forms when building with -jMattias Andrée2015-04-061-12/+12
| | | | Signed-off-by: Mattias Andrée <maandree@operamail.com>