summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/crypto/sha/ChangeLog4
-rw-r--r--src/lib/crypto/sha/t_shs.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/crypto/sha/ChangeLog b/src/lib/crypto/sha/ChangeLog
index 9e3c0011d..3ded41a01 100644
--- a/src/lib/crypto/sha/ChangeLog
+++ b/src/lib/crypto/sha/ChangeLog
@@ -1,3 +1,7 @@
+Mon May 20 17:15:32 1996 Theodore Y. Ts'o <tytso@mit.edu>
+
+ * t_shs.c (main): Don't do timing tests; it takes too long!
+
Tue May 14 17:09:36 1996 Richard Basch <basch@lehman.com>
* .Sanitize: reflect current files
diff --git a/src/lib/crypto/sha/t_shs.c b/src/lib/crypto/sha/t_shs.c
index 8c1a1290a..de30603e2 100644
--- a/src/lib/crypto/sha/t_shs.c
+++ b/src/lib/crypto/sha/t_shs.c
@@ -104,6 +104,7 @@ main()
puts( "passed, result= 3232AFFA48628A26653B5AAA44541FD90D690603" );
#endif /* NEW_SHS */
+#if 0
printf( "\nTesting speed for 100MB data... " );
shsInit( &shsInfo );
secondCount = time( NULL );
@@ -112,6 +113,7 @@ main()
secondCount = time( NULL ) - secondCount;
printf( "done. Time = %ld seconds, %ld kbytes/second.\n", \
secondCount, 100500L / secondCount );
+#endif
puts( "\nAll SHS tests passed" );
exit( OK );