links
[openssl.git] / doc / crypto / md5.pod
index 81c014feaa3c4be345d3f3b065cc78541ba7ef72..d7c120023dafca763e2a1a40408558e6598eb518 100644 (file)
@@ -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);
 
@@ -51,8 +51,9 @@ for MD2_DIGEST_LENGTH == 16 bytes of output, and erases the B<MD2_CTX>.
 MD5_Init(), MD5_Update() and MD5_Final() are analogous using an
 B<MD5_CTX> structure.
 
-Applications should use the higher level functions EVP_DigestInit(3) etc.
-instead of calling the hash functions directly.
+Applications should use the higher level functions
+L<EVP_DigestInit(3)|EVP_DigestInit(3)>
+etc. instead of calling the hash functions directly.
 
 =head1 NOTE