diff options
author | 1996-06-03 22:20:31 +0000 | |
---|---|---|
committer | 1996-06-03 22:20:31 +0000 | |
commit | ee815117eed31ba66cfa929d47f97f54ee7de8cc (patch) | |
tree | bb01ea5835d2c486890f8e390a9407cbe933bc0e /lib/libc/crypt/md5crypt.c | |
parent | Added md5 utility needed by the "ports" system. From FreeBSD (diff) | |
download | wireguard-openbsd-ee815117eed31ba66cfa929d47f97f54ee7de8cc.tar.xz wireguard-openbsd-ee815117eed31ba66cfa929d47f97f54ee7de8cc.zip |
Add md[245] routines in libc/md, remove md5 from libc/crypt. Add $OpenBSD$
Diffstat (limited to 'lib/libc/crypt/md5crypt.c')
-rw-r--r-- | lib/libc/crypt/md5crypt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/crypt/md5crypt.c b/lib/libc/crypt/md5crypt.c index 7872c368597..f17a8d374cb 100644 --- a/lib/libc/crypt/md5crypt.c +++ b/lib/libc/crypt/md5crypt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md5crypt.c,v 1.1 1996/05/30 02:36:33 deraadt Exp $ */ +/* $OpenBSD: md5crypt.c,v 1.2 1996/06/03 22:20:37 niklas Exp $ */ /* * ---------------------------------------------------------------------------- @@ -11,12 +11,12 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: md5crypt.c,v 1.1 1996/05/30 02:36:33 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: md5crypt.c,v 1.2 1996/06/03 22:20:37 niklas Exp $"; #endif /* LIBC_SCCS and not lint */ #include <unistd.h> #include <stdio.h> -#include "md5.h" +#include <md5.h> static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; |