summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_output.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2004-05-07 14:42:28 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2004-05-07 14:42:28 +0000
commit1bdc27e88cf64d3ec9479236e08d320d7f39f389 (patch)
tree1fea124d4f8c8f5d265334357d88c5fee1948020 /sys/netinet/tcp_output.c
parent9e627b5468b618eb1d7017e092537c41b3507daa (diff)
Replace RSA-derived md5 code with code derived from Colin Plumb's PD version.
This moves md5.c out of libkern and into sys/crypto where it belongs (as requested by markus@). Note that md5.c is still mandatory (dev/rnd.c uses it). Verified with IPsec + hmac-md5 and tcp md5sig. OK henning@ and hshoexer@
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r--sys/netinet/tcp_output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c
index fd9e97cb04b..587666bb879 100644
--- a/sys/netinet/tcp_output.c
+++ b/sys/netinet/tcp_output.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_output.c,v 1.66 2004/04/26 18:12:25 frantzen Exp $ */
+/* $OpenBSD: tcp_output.c,v 1.67 2004/05/07 14:42:27 millert Exp $ */
/* $NetBSD: tcp_output.c,v 1.16 1997/06/03 16:17:09 kml Exp $ */
/*
@@ -104,7 +104,7 @@
#endif /* INET6 */
#ifdef TCP_SIGNATURE
-#include <sys/md5k.h>
+#include <crypto/md5.h>
#endif /* TCP_SIGNATURE */
#ifdef notyet