aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/md5.h
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1998-03-29 11:55:06 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1998-03-29 11:55:06 +0000
commit934f5f33065a9946edc034addcc5d63c4bafab32 (patch)
tree1fa04871174fe9ba870e2a0f27da7cf81eb78c56 /sys/sys/md5.h
parent00d21a1337198badc1440b1fcf7f4041cba285ff (diff)
downloadsrc-934f5f33065a9946edc034addcc5d63c4bafab32.tar.gz
src-934f5f33065a9946edc034addcc5d63c4bafab32.zip
Export MD5Transform in md5.c and remove a private version in random_machdep.c
md5 is standard as a consequence of this.
Notes
Notes: svn path=/head/; revision=34944
Diffstat (limited to 'sys/sys/md5.h')
-rw-r--r--sys/sys/md5.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/sys/md5.h b/sys/sys/md5.h
index f8f4469882c6..1b636b590151 100644
--- a/sys/sys/md5.h
+++ b/sys/sys/md5.h
@@ -1,5 +1,5 @@
/* MD5.H - header file for MD5C.C
- * $Id: md5.h,v 1.9 1997/08/25 05:24:31 joerg Exp $
+ * $Id: md5.h,v 1.10 1998/03/27 10:22:35 phk Exp $
*/
/* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
@@ -43,5 +43,8 @@ void MD5Final (unsigned char [16], MD5_CTX *);
char * MD5End(MD5_CTX *, char *);
char * MD5File(const char *, char *);
char * MD5Data(const unsigned char *, unsigned int, char *);
+#ifdef KERNEL
+void MD5Transform __P((u_int32_t [4], const unsigned char [64]));
+#endif
__END_DECLS
#endif /* _SYS_MD5_H_ */