aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libbb/sha1.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/libbb/sha1.c b/libbb/sha1.c
index 1584e98cd..745ac693c 100644
--- a/libbb/sha1.c
+++ b/libbb/sha1.c
@@ -19,7 +19,13 @@
19 * 19 *
20 * SHA256 and SHA512 parts are: 20 * SHA256 and SHA512 parts are:
21 * Released into the Public Domain by Ulrich Drepper <drepper@redhat.com>. 21 * Released into the Public Domain by Ulrich Drepper <drepper@redhat.com>.
22 * TODO: shrink them. 22 * Shrank by Denys Vlasenko.
23 *
24 * ---------------------------------------------------------------------------
25 *
26 * The best way to test random blocksizes is to go to coreutils/md5_sha1_sum.c
27 * and replace "4096" with something like "2000 + time(NULL) % 2097",
28 * then rebuild and compare "shaNNNsum bigfile" results.
23 */ 29 */
24 30
25#include "libbb.h" 31#include "libbb.h"