| 
									
										
										
										
											2016-05-18 02:24:46 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-05-18 02:24:46 +08:00
										 |  |  |  * Licensed under the OpenSSL license (the "License").  You may not use | 
					
						
							|  |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-14 22:56:48 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2003-03-21 07:31:24 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_MD4
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | # include <openssl/evp.h>
 | 
					
						
							|  |  |  | # include <openssl/objects.h>
 | 
					
						
							|  |  |  | # include <openssl/x509.h>
 | 
					
						
							|  |  |  | # include <openssl/md4.h>
 | 
					
						
							| 
									
										
										
										
											2016-03-19 02:30:20 +08:00
										 |  |  | # include <openssl/rsa.h>
 | 
					
						
							| 
									
										
										
										
											2015-11-30 17:25:36 +08:00
										 |  |  | # include "internal/evp_int.h"
 | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-03 04:05:27 +08:00
										 |  |  | static int init(EVP_MD_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-11-27 21:02:12 +08:00
										 |  |  |     return MD4_Init(EVP_MD_CTX_md_data(ctx)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2001-09-03 04:05:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | static int update(EVP_MD_CTX *ctx, const void *data, size_t count) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-11-27 21:02:12 +08:00
										 |  |  |     return MD4_Update(EVP_MD_CTX_md_data(ctx), data, count); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2001-09-03 04:05:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | static int final(EVP_MD_CTX *ctx, unsigned char *md) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-11-27 21:02:12 +08:00
										 |  |  |     return MD4_Final(md, EVP_MD_CTX_md_data(ctx)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2001-09-03 04:05:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | static const EVP_MD md4_md = { | 
					
						
							|  |  |  |     NID_md4, | 
					
						
							|  |  |  |     NID_md4WithRSAEncryption, | 
					
						
							|  |  |  |     MD4_DIGEST_LENGTH, | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     init, | 
					
						
							|  |  |  |     update, | 
					
						
							|  |  |  |     final, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     MD4_CBLOCK, | 
					
						
							|  |  |  |     sizeof(EVP_MD *) + sizeof(MD4_CTX), | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-03-09 10:51:02 +08:00
										 |  |  | const EVP_MD *EVP_md4(void) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return &md4_md; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2000-08-14 22:05:53 +08:00
										 |  |  | #endif
 |