diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-10-01 22:12:15 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-10-01 22:12:15 +0000 |
commit | 9f9582a630a30c64b6be8651404ce7167995ac9b (patch) | |
tree | 83a927ed90732a1934c0ae8f3e23d64ce1d41ae6 | |
parent | d412d25f3c90f1fd1f8ec1c1c2fbd23ec9c9d8f6 (diff) |
sync with rmd160.h
-rw-r--r-- | lib/libc/hash/rmd160.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/hash/rmd160.3 b/lib/libc/hash/rmd160.3 index d806e57b04e..1da69756ae2 100644 --- a/lib/libc/hash/rmd160.3 +++ b/lib/libc/hash/rmd160.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rmd160.3,v 1.15 2001/10/01 20:36:17 markus Exp $ +.\" $OpenBSD: rmd160.3,v 1.16 2001/10/01 22:12:14 markus Exp $ .\" .\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> .\" All rights reserved. @@ -46,17 +46,17 @@ .Ft void .Fn RMD160Init "RMD160_CTX *context" .Ft void -.Fn RMD160Update "RMD160_CTX *context" "const u_char *data" "u_int nbytes" +.Fn RMD160Update "RMD160_CTX *context" "const u_char *data" "u_int32_t nbytes" .Ft void .Fn RMD160Final "u_char digest[20]" "RMD160_CTX *context" .Ft void -.Fn RMD160Transform "u_int32_t state[5]" "const u_int32_t block[16]" +.Fn RMD160Transform "u_int32_t state[5]" "const u_char block[64]" .Ft "char *" .Fn RMD160End "RMD160_CTX *context" "char *buf" .Ft "char *" .Fn RMD160File "char *filename" "char *buf" .Ft "char *" -.Fn RMD160Data "u_char *data" "u_int len" "char *buf" +.Fn RMD160Data "u_char *data" "size_t len" "char *buf" .Sh DESCRIPTION The RMD160 functions implement the 160-bit RIPE message digest hash algorithm (RMD-160). |