summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_subr.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_subr.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_subr.c')
-rw-r--r--sys/netinet/tcp_subr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c
index 62bd67be1ce..1071892c6be 100644
--- a/sys/netinet/tcp_subr.c
+++ b/sys/netinet/tcp_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_subr.c,v 1.79 2004/05/04 22:50:18 claudio Exp $ */
+/* $OpenBSD: tcp_subr.c,v 1.80 2004/05/07 14:42:27 millert Exp $ */
/* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */
/*
@@ -100,7 +100,7 @@
#endif /* INET6 */
#ifdef TCP_SIGNATURE
-#include <sys/md5k.h>
+#include <crypto/md5.h>
#endif /* TCP_SIGNATURE */
/* patchable/settable parameters for tcp */