diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-10-06 14:55:30 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-10-06 14:55:30 +0000 |
commit | 5e9225b5720c4af1ae910249c95b2e940b953a39 (patch) | |
tree | 101c2a0ef188b9fbfffb361aedc0f99cb5643603 /lib/libc/md | |
parent | e7b8e7a19a9b8d390ef91a79d68afc0864e03ca7 (diff) |
- let cryptographic checksums refer to each other
- avoid .Xref to one's own manpage
Diffstat (limited to 'lib/libc/md')
-rw-r--r-- | lib/libc/md/Makefile.inc | 6 | ||||
-rw-r--r-- | lib/libc/md/mdX.3 | 7 |
2 files changed, 7 insertions, 6 deletions
diff --git a/lib/libc/md/Makefile.inc b/lib/libc/md/Makefile.inc index c862c56e486..9998211f279 100644 --- a/lib/libc/md/Makefile.inc +++ b/lib/libc/md/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.5 1998/11/20 11:18:42 d Exp $ +# $OpenBSD: Makefile.inc,v 1.6 1999/10/06 14:55:29 espie Exp $ .PATH: ${LIBCSRCDIR}/md @@ -15,11 +15,11 @@ CLEANFILES+= md[45]hl.c md[45].3 all: md4.3 md5.3 md4.3: mdX.3 - sed -e 's/mdX/md4/g' -e 's/MDX/MD4/g' $> > $@ + sed -e 's/mdX/md4/g' -e 's/mdY/md5/g' -e 's/MDX/MD4/g' $> > $@ cat ${>:H}/md4.copyright >> $@ md5.3: mdX.3 - sed -e 's/mdX/md5/g' -e 's/MDX/MD5/g' $> > $@ + sed -e 's/mdX/md5/g' -e 's/mdY/md4/g' -e 's/MDX/MD5/g' $> > $@ cat ${>:H}/md5.copyright >> $@ .endif diff --git a/lib/libc/md/mdX.3 b/lib/libc/md/mdX.3 index 68fe07d5507..87eff72e022 100644 --- a/lib/libc/md/mdX.3 +++ b/lib/libc/md/mdX.3 @@ -6,7 +6,7 @@ .\" this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp .\" ---------------------------------------------------------------------------- .\" -.\" $OpenBSD: mdX.3,v 1.12 1999/07/09 13:35:14 aaron Exp $ +.\" $OpenBSD: mdX.3,v 1.13 1999/10/06 14:55:29 espie Exp $ .\" .Dd October 9, 1996 .Dt MDX 3 @@ -103,8 +103,9 @@ If the .Ar buf argument is non-null it must point to at least 33 characters of buffer space. .Sh SEE ALSO -.Xr md4 3 , -.Xr md5 3 +.Xr mdY 3 , +.Xr rmd160 3 , +.Xr sha1 3 .Rs .%A B. Kaliski .%T The MD2 Message-Digest Algorithm |