| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | =pod | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NAME | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  | MD2, MD4, MD5, MD2_Init, MD2_Update, MD2_Final, MD4_Init, MD4_Update, | 
					
						
							|  |  |  | MD4_Final, MD5_Init, MD5_Update, MD5_Final - MD2, MD4, and MD5 hash functions | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 SYNOPSIS | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  #include <openssl/md2.h> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-21 02:58:49 +08:00
										 |  |  |  unsigned char *MD2(const unsigned char *d, unsigned long n, unsigned char *md); | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-28 05:58:09 +08:00
										 |  |  |  int MD2_Init(MD2_CTX *c); | 
					
						
							| 
									
										
										
										
											2017-01-21 02:58:49 +08:00
										 |  |  |  int MD2_Update(MD2_CTX *c, const unsigned char *data, unsigned long len); | 
					
						
							| 
									
										
										
										
											2006-10-28 05:58:09 +08:00
										 |  |  |  int MD2_Final(unsigned char *md, MD2_CTX *c); | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  |  #include <openssl/md4.h> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-21 02:58:49 +08:00
										 |  |  |  unsigned char *MD4(const unsigned char *d, unsigned long n, unsigned char *md); | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-28 05:58:09 +08:00
										 |  |  |  int MD4_Init(MD4_CTX *c); | 
					
						
							| 
									
										
										
										
											2017-01-21 02:58:49 +08:00
										 |  |  |  int MD4_Update(MD4_CTX *c, const void *data, unsigned long len); | 
					
						
							| 
									
										
										
										
											2006-10-28 05:58:09 +08:00
										 |  |  |  int MD4_Final(unsigned char *md, MD4_CTX *c); | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  |  #include <openssl/md5.h> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-21 02:58:49 +08:00
										 |  |  |  unsigned char *MD5(const unsigned char *d, unsigned long n, unsigned char *md); | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-28 05:58:09 +08:00
										 |  |  |  int MD5_Init(MD5_CTX *c); | 
					
						
							| 
									
										
										
										
											2017-01-21 02:58:49 +08:00
										 |  |  |  int MD5_Update(MD5_CTX *c, const void *data, unsigned long len); | 
					
						
							| 
									
										
										
										
											2006-10-28 05:58:09 +08:00
										 |  |  |  int MD5_Final(unsigned char *md, MD5_CTX *c); | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 DESCRIPTION | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  | MD2, MD4, and MD5 are cryptographic hash functions with a 128 bit output. | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  | MD2(), MD4(), and MD5() compute the MD2, MD4, and MD5 message digest | 
					
						
							|  |  |  | of the B<n> bytes at B<d> and place it in B<md> (which must have space | 
					
						
							|  |  |  | for MD2_DIGEST_LENGTH == MD4_DIGEST_LENGTH == MD5_DIGEST_LENGTH == 16 | 
					
						
							|  |  |  | bytes of output). If B<md> is NULL, the digest is placed in a static | 
					
						
							|  |  |  | array. | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | The following functions may be used if the message is not completely | 
					
						
							|  |  |  | stored in memory: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MD2_Init() initializes a B<MD2_CTX> structure. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MD2_Update() can be called repeatedly with chunks of the message to | 
					
						
							|  |  |  | be hashed (B<len> bytes at B<data>). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MD2_Final() places the message digest in B<md>, which must have space | 
					
						
							|  |  |  | for MD2_DIGEST_LENGTH == 16 bytes of output, and erases the B<MD2_CTX>. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  | MD4_Init(), MD4_Update(), MD4_Final(), MD5_Init(), MD5_Update(), and | 
					
						
							|  |  |  | MD5_Final() are analogous using an B<MD4_CTX> and B<MD5_CTX> structure. | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-26 00:00:24 +08:00
										 |  |  | Applications should use the higher level functions | 
					
						
							| 
									
										
										
										
											2015-08-18 03:21:33 +08:00
										 |  |  | L<EVP_DigestInit(3)> | 
					
						
							| 
									
										
										
										
											2000-02-24 19:55:57 +08:00
										 |  |  | etc. instead of calling the hash functions directly. | 
					
						
							| 
									
										
										
										
											2000-02-07 07:26:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | =head1 NOTE | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  | MD2, MD4, and MD5 are recommended only for compatibility with existing | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | applications. In new applications, SHA-1 or RIPEMD-160 should be | 
					
						
							|  |  |  | preferred. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 RETURN VALUES | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-20 20:11:46 +08:00
										 |  |  | MD2(), MD4(), and MD5() return pointers to the hash value. | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  | MD2_Init(), MD2_Update(), MD2_Final(), MD4_Init(), MD4_Update(), | 
					
						
							| 
									
										
										
										
											2006-10-28 05:58:09 +08:00
										 |  |  | MD4_Final(), MD5_Init(), MD5_Update(), and MD5_Final() return 1 for | 
					
						
							|  |  |  | success, 0 otherwise. | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 CONFORMING TO | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  | RFC 1319, RFC 1320, RFC 1321 | 
					
						
							| 
									
										
										
										
											2000-02-04 02:22:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 SEE ALSO | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-18 03:21:33 +08:00
										 |  |  | L<EVP_DigestInit(3)> | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | =head1 COPYRIGHT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-06 21:04:44 +08:00
										 |  |  | Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  | in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  | L<https://www.openssl.org/source/license.html>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =cut |