diff options
author | Denys Vlasenko | 2016-08-29 14:05:25 +0200 |
---|---|---|
committer | Denys Vlasenko | 2016-08-29 14:05:25 +0200 |
commit | 71a090f1871f165ebf3c31f733b36aafca71a6b4 (patch) | |
tree | 4f0b38ba12a6e5b80aa829574f999ae1efd9f17a /coreutils/Config.src | |
parent | d3d7f085ebf2898b62d4bb75566122c65be96454 (diff) | |
download | busybox-71a090f1871f165ebf3c31f733b36aafca71a6b4.zip busybox-71a090f1871f165ebf3c31f733b36aafca71a6b4.tar.gz |
sha3: fix to conform to final SHA3 padding standard, add -a BITS option
function old new delta
hash_file 331 396 +65
md5_sha1_sum_main 485 538 +53
packed_usage 30423 30464 +41
sha3_begin 17 31 +14
sha3_hash 101 110 +9
sha3_end 41 49 +8
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/Config.src')
-rw-r--r-- | coreutils/Config.src | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/coreutils/Config.src b/coreutils/Config.src index 619c2ef..b9dde12 100644 --- a/coreutils/Config.src +++ b/coreutils/Config.src @@ -328,12 +328,6 @@ config FEATURE_LS_COLOR_IS_DEFAULT configurable, and the output may not be legible on many output screens. -config MD5SUM - bool "md5sum" - default y - help - md5sum is used to print or check MD5 checksums. - config MKDIR bool "mkdir" default y @@ -458,30 +452,6 @@ config SEQ help print a sequence of numbers -config SHA1SUM - bool "sha1sum" - default y - help - Compute and check SHA1 message digest - -config SHA256SUM - bool "sha256sum" - default y - help - Compute and check SHA256 message digest - -config SHA512SUM - bool "sha512sum" - default y - help - Compute and check SHA512 message digest - -config SHA3SUM - bool "sha3sum" - default y - help - Compute and check SHA3 (512-bit) message digest - config SLEEP bool "sleep" default y @@ -731,17 +701,4 @@ config FEATURE_HUMAN_READABLE help Allow df, du, and ls to have human readable output. -comment "Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum" - depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM || SHA3SUM - -config FEATURE_MD5_SHA1_SUM_CHECK - bool "Enable -c, -s and -w options" - default y - depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM || SHA3SUM - help - Enabling the -c options allows files to be checked - against pre-calculated hash values. - - -s and -w are useful options when verifying checksums. - endmenu |