Browse Source

more unescaped \n lines in nroff documents

OPENBSD_2_6
deraadt 25 years ago
parent
commit
f61554143a
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      src/lib/libc/hash/rmd160.3
  2. +2
    -2
      src/lib/libc/hash/sha1.3

+ 2
- 2
src/lib/libc/hash/rmd160.3 View File

@ -1,4 +1,4 @@
.\" $OpenBSD: rmd160.3,v 1.10 1999/07/09 13:35:20 aaron Exp $
.\" $OpenBSD: rmd160.3,v 1.11 1999/08/11 03:06:06 deraadt Exp $
.\"
.\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
.\" All rights reserved.
@ -178,7 +178,7 @@ RMD160_CTX rmd;
u_char output[41];
char *buf = "abc";
printf("0x%s\n", RMD160Data(buf, strlen(buf), output));
printf("0x%s\en", RMD160Data(buf, strlen(buf), output));
.Ed
.Sh CAVEATS
If a message digest is to be copied to a multi-byte type (ie:


+ 2
- 2
src/lib/libc/hash/sha1.3 View File

@ -1,4 +1,4 @@
.\" $OpenBSD: sha1.3,v 1.15 1999/07/09 13:35:20 aaron Exp $
.\" $OpenBSD: sha1.3,v 1.16 1999/08/11 03:06:06 deraadt Exp $
.\"
.\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
.\" All rights reserved.
@ -175,7 +175,7 @@ SHA1_CTX sha;
u_char output[41];
char *buf = "abc";
printf("0x%s\n", SHA1Data(buf, strlen(buf), output));
printf("0x%s\en", SHA1Data(buf, strlen(buf), output));
.Ed
.Sh CAVEATS
This implementation of SHA-1 has not been validated by NIST


Loading…
Cancel
Save