1
0
mirror of https://github.com/openbsd/src.git synced 2026-05-01 17:46:35 +00:00

- fix some Xr; from martin

- minor tweaks while here
This commit is contained in:
jmc
2019-12-05 21:45:05 +00:00
parent a95aeea422
commit 2feffb3a60
3 changed files with 13 additions and 15 deletions

View File

@@ -16,9 +16,9 @@
.\" If we meet some day, and you think this stuff is worth it, you
.\" can buy me a beer in return. Poul-Henning Kamp
.\"
.\" $OpenBSD: MD5Init.3,v 1.1 2019/08/30 22:20:43 deraadt Exp $
.\" $OpenBSD: MD5Init.3,v 1.2 2019/12/05 21:45:05 jmc Exp $
.\"
.Dd $Mdocdate: August 30 2019 $
.Dd $Mdocdate: December 5 2019 $
.Dt MD5INIT 3
.Os
.Sh NAME
@@ -163,8 +163,8 @@ characters of buffer space.
.Xr cksum 1 ,
.Xr md5 1 ,
.Xr RMD160Init 3 ,
.Xr SHA1INIT 3 ,
.Xr SHA256INIT 3
.Xr SHA1Init 3 ,
.Xr SHA256Init 3
.Rs
.%A H. Dobbertin
.%D 1995
@@ -211,4 +211,3 @@ helper functions are derived from code written by
.Sh BUGS
Collisions have been found for the full version of MD5.
The use of the SHA2 functions is recommended instead.

View File

@@ -1,4 +1,4 @@
.\" $OpenBSD: RMD160Init.3,v 1.1 2019/08/30 22:20:43 deraadt Exp $
.\" $OpenBSD: RMD160Init.3,v 1.2 2019/12/05 21:45:05 jmc Exp $
.\"
.\" Copyright (c) 1997, 2004 Todd C. Miller <millert@openbsd.org>
.\"
@@ -17,7 +17,7 @@
.\" See http://www.esat.kuleuven.ac.be/~bosselae/ripemd160.html
.\" for detailed information about RIPEMD-160.
.\"
.Dd $Mdocdate: August 30 2019 $
.Dd $Mdocdate: December 5 2019 $
.Dt RMD160INIT 3
.Os
.Sh NAME
@@ -200,8 +200,8 @@ printf("0x%s\en", RMD160Data(buf, strlen(buf), output));
.Sh SEE ALSO
.Xr cksum 1 ,
.Xr MD5Init 3 ,
.Xr SHA1INIT 3 ,
.Xr SHA256INIT 3
.Xr SHA1Init 3 ,
.Xr SHA256Init 3
.Rs
.%A H. Dobbertin, A. Bosselaers, B. Preneel
.%T RIPEMD-160, a strengthened version of RIPEMD

View File

@@ -1,4 +1,4 @@
.\" $OpenBSD: SHA1Init.3,v 1.1 2019/08/30 22:20:43 deraadt Exp $
.\" $OpenBSD: SHA1Init.3,v 1.2 2019/12/05 21:45:05 jmc Exp $
.\"
.\" Copyright (c) 1997, 2004 Todd C. Miller <millert@openbsd.org>
.\"
@@ -17,7 +17,7 @@
.\" See http://csrc.nist.gov/publications/fips/fips180-1/fip180-1.txt
.\" for the detailed standard
.\"
.Dd $Mdocdate: August 30 2019 $
.Dd $Mdocdate: December 5 2019 $
.Dt SHA1INIT 3
.Os
.Sh NAME
@@ -117,9 +117,8 @@ The
.Fn SHA1End
function is a front end for
.Fn SHA1Final
which converts the digest into an
.Tn ASCII
representation of the 160 bit digest in hexadecimal.
which converts the digest into an ASCII representation
of the 160 bit digest in hexadecimal.
.Pp
The
.Fn SHA1File
@@ -207,7 +206,7 @@ printf("0x%s\en", SHA1Data(buf, strlen(buf), output));
.Xr sha1 1 ,
.Xr MD5Init 3 ,
.Xr RMD160Init 3 ,
.Xr SHA256INIT 3
.Xr SHA256Init 3
.Sh STANDARDS
.Rs
.%A J. Burrows