summaryrefslogtreecommitdiffstats
path: root/doc/crypto
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2000-02-17 09:39:01 +0000
committerBen Laurie <ben@openssl.org>2000-02-17 09:39:01 +0000
commit671cf7f54ae2447496852f03a7ad3ac21a9938ac (patch)
tree671295b3c60567f477bd3ee65e4bce53f1ed55df /doc/crypto
parentcd3c54e50f0f0b3839bb70fabbe222e389732146 (diff)
Reflect API changes.
Diffstat (limited to 'doc/crypto')
-rw-r--r--doc/crypto/md5.pod2
-rw-r--r--doc/crypto/sha.pod2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/crypto/md5.pod b/doc/crypto/md5.pod
index 81c014feaa..c8b141b854 100644
--- a/doc/crypto/md5.pod
+++ b/doc/crypto/md5.pod
@@ -24,7 +24,7 @@ MD5_Final - MD2 and MD5 hash functions
unsigned char *md);
void MD5_Init(MD5_CTX *c);
- void MD5_Update(MD5_CTX *c, const unsigned char *data,
+ void MD5_Update(MD5_CTX *c, const void *data,
unsigned long len);
void MD5_Final(unsigned char *md, MD5_CTX *c);
diff --git a/doc/crypto/sha.pod b/doc/crypto/sha.pod
index c164c47608..ecfba75395 100644
--- a/doc/crypto/sha.pod
+++ b/doc/crypto/sha.pod
@@ -12,7 +12,7 @@ SHA1, SHA1_Init, SHA1_Update, SHA1_Final - Secure Hash Algorithm
unsigned char *md);
void SHA1_Init(SHA_CTX *c);
- void SHA1_Update(SHA_CTX *c, const unsigned char *data,
+ void SHA1_Update(SHA_CTX *c, const void *data,
unsigned long len);
void SHA1_Final(unsigned char *md, SHA_CTX *c);