aboutsummaryrefslogtreecommitdiff
path: root/coreutils/Config.src
diff options
context:
space:
mode:
authorLauri Kasanen <curaga@operamail.com>2013-01-14 05:20:50 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-01-14 05:20:50 +0100
commitb8173b603f57dcf918a67f1ec00763ab5f4e1cf8 (patch)
tree726549290ba408cf68561c4c1c2d591a80ded319 /coreutils/Config.src
parentb7841cf7b919b16d1bd4619154bf7cb4c22b4ccd (diff)
downloadbusybox-w32-b8173b603f57dcf918a67f1ec00763ab5f4e1cf8.tar.gz
busybox-w32-b8173b603f57dcf918a67f1ec00763ab5f4e1cf8.tar.bz2
busybox-w32-b8173b603f57dcf918a67f1ec00763ab5f4e1cf8.zip
sha3sum: new applet
function old new delta KeccakF - 496 +496 KeccakF_RoundConstants - 192 +192 sha3_hash - 171 +171 sha3_end - 40 +40 hash_file 274 299 +25 KeccakF_RotationConstants - 25 +25 KeccakF_PiLane - 25 +25 packed_usage 29213 29232 +19 sha3_begin - 18 +18 KeccakF_Mod5 - 10 +10 applet_names 2445 2453 +8 applet_main 1420 1424 +4 applet_nameofs 710 712 +2 ------------------------------------------------------------------------------ (add/remove: 8/0 grow/shrink: 9/7 up/down: 1049/-54) Total: ~995 bytes Signed-off-by: Lauri Kasanen <curaga@operamail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/Config.src')
-rw-r--r--coreutils/Config.src12
1 files changed, 9 insertions, 3 deletions
diff --git a/coreutils/Config.src b/coreutils/Config.src
index a28449b11..0c44c4b51 100644
--- a/coreutils/Config.src
+++ b/coreutils/Config.src
@@ -514,6 +514,12 @@ config SHA512SUM
514 help 514 help
515 Compute and check SHA512 message digest 515 Compute and check SHA512 message digest
516 516
517config SHA3SUM
518 bool "sha3sum"
519 default y
520 help
521 Compute and check SHA3 (512-bit) message digest
522
517config SLEEP 523config SLEEP
518 bool "sleep" 524 bool "sleep"
519 default y 525 default y
@@ -766,13 +772,13 @@ config FEATURE_HUMAN_READABLE
766 help 772 help
767 Allow df, du, and ls to have human readable output. 773 Allow df, du, and ls to have human readable output.
768 774
769comment "Common options for md5sum, sha1sum, sha256sum, sha512sum" 775comment "Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum"
770 depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM 776 depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM || SHA3SUM
771 777
772config FEATURE_MD5_SHA1_SUM_CHECK 778config FEATURE_MD5_SHA1_SUM_CHECK
773 bool "Enable -c, -s and -w options" 779 bool "Enable -c, -s and -w options"
774 default y 780 default y
775 depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM 781 depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM || SHA3SUM
776 help 782 help
777 Enabling the -c options allows files to be checked 783 Enabling the -c options allows files to be checked
778 against pre-calculated hash values. 784 against pre-calculated hash values.