aboutsummaryrefslogtreecommitdiff
path: root/src/lib/crypto/sha1/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/crypto/sha1/ChangeLog')
-rw-r--r--src/lib/crypto/sha1/ChangeLog23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/lib/crypto/sha1/ChangeLog b/src/lib/crypto/sha1/ChangeLog
index a6a00f3..0030dc9 100644
--- a/src/lib/crypto/sha1/ChangeLog
+++ b/src/lib/crypto/sha1/ChangeLog
@@ -1,3 +1,26 @@
+2001-10-29 Miro Jurisic <meeroh@mit.edu>
+ * pullup from krb5-1-2 branch after krb5-1-2-2-bp
+ * shs.c: use "" include for k5-int.h
+
+2001-07-16 Ken Raeburn <raeburn@mit.edu>
+
+ * t_shs3.c: New test file from Marcus Watts.
+ (longReverse): Resurrected function long since deleted from
+ shs.c.
+ * Makefile.in (check-unix, check-windows): Use t_shs3 test.
+ (clean): Delete it.
+
+ * shs.c (SHSTransform): Make input data pointer point to const.
+ (SHSUpdate): Bugfixes suggested by Marcus Watts, to fix buffer
+ overruns, bugs with small or odd block sizes.
+
+2001-07-05 Danilo Almeida <dalmeida@mit.edu>
+
+ * shs.h, shs.c, t_shs.c: Fix sha1 on Windows by renaming LONG to
+ SHS_LONG to avoid problem with LONG being signed on Windows.
+ Rename BYTE to SHS_BYTE to avoid any name colisions with Windows
+ (where BYTE and LONG are types defined in the Platform SDK).
+
2000-01-21 Ken Raeburn <raeburn@mit.edu>
* shs.c (ROTL): Change (a&b|c) construct to make meaning clear,