| 
									
										
										
										
											2016-05-18 02:24:46 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2018-09-04 17:21:10 +08:00
										 |  |  |  * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2001-09-10 22:59:17 +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
 | 
					
						
							| 
									
										
										
										
											2001-09-10 22:59:17 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-14 22:56:48 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/objects.h>
 | 
					
						
							|  |  |  | #include <openssl/evp.h>
 | 
					
						
							| 
									
										
										
										
											2016-03-19 02:30:20 +08:00
										 |  |  | #include <openssl/engine.h>
 | 
					
						
							| 
									
										
										
										
											2015-11-30 17:25:36 +08:00
										 |  |  | #include "internal/evp_int.h"
 | 
					
						
							| 
									
										
										
										
											2015-11-27 21:17:50 +08:00
										 |  |  | #include "evp_locl.h"
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-01 08:38:35 +08:00
										 |  |  | /* This call frees resources associated with the context */ | 
					
						
							| 
									
										
										
										
											2015-12-02 07:26:19 +08:00
										 |  |  | int EVP_MD_CTX_reset(EVP_MD_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-12-01 08:38:35 +08:00
										 |  |  |     if (ctx == NULL) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Don't assume ctx->md_data was cleaned in EVP_Digest_Final, because | 
					
						
							|  |  |  |      * sometimes only copies of the context are ever finalised. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (ctx->digest && ctx->digest->cleanup | 
					
						
							|  |  |  |         && !EVP_MD_CTX_test_flags(ctx, EVP_MD_CTX_FLAG_CLEANED)) | 
					
						
							|  |  |  |         ctx->digest->cleanup(ctx); | 
					
						
							|  |  |  |     if (ctx->digest && ctx->digest->ctx_size && ctx->md_data | 
					
						
							|  |  |  |         && !EVP_MD_CTX_test_flags(ctx, EVP_MD_CTX_FLAG_REUSE)) { | 
					
						
							|  |  |  |         OPENSSL_clear_free(ctx->md_data, ctx->digest->ctx_size); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-09-03 23:56:41 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * pctx should be freed by the user of EVP_MD_CTX | 
					
						
							| 
									
										
										
										
											2018-09-04 17:21:10 +08:00
										 |  |  |      * if EVP_MD_CTX_FLAG_KEEP_PKEY_CTX is set | 
					
						
							| 
									
										
										
										
											2018-09-03 23:56:41 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2018-09-04 17:21:10 +08:00
										 |  |  |     if (!EVP_MD_CTX_test_flags(ctx, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX)) | 
					
						
							| 
									
										
										
										
											2018-09-03 23:56:41 +08:00
										 |  |  |         EVP_PKEY_CTX_free(ctx->pctx); | 
					
						
							| 
									
										
										
										
											2015-12-01 08:38:35 +08:00
										 |  |  | #ifndef OPENSSL_NO_ENGINE
 | 
					
						
							| 
									
										
										
										
											2016-02-26 01:09:06 +08:00
										 |  |  |     ENGINE_finish(ctx->engine); | 
					
						
							| 
									
										
										
										
											2015-12-01 08:38:35 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-06-25 06:37:27 +08:00
										 |  |  |     OPENSSL_cleanse(ctx, sizeof(*ctx)); | 
					
						
							| 
									
										
										
										
											2015-12-01 08:38:35 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2001-07-31 07:57:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-02 07:26:19 +08:00
										 |  |  | EVP_MD_CTX *EVP_MD_CTX_new(void) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-12-01 08:38:35 +08:00
										 |  |  |     return OPENSSL_zalloc(sizeof(EVP_MD_CTX)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-07-31 07:57:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-02 07:26:19 +08:00
										 |  |  | void EVP_MD_CTX_free(EVP_MD_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2015-12-01 08:38:35 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-12-02 07:26:19 +08:00
										 |  |  |     EVP_MD_CTX_reset(ctx); | 
					
						
							| 
									
										
										
										
											2015-12-01 08:38:35 +08:00
										 |  |  |     OPENSSL_free(ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2001-07-31 07:57:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-03-08 22:04:22 +08:00
										 |  |  | int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-12-02 07:26:19 +08:00
										 |  |  |     EVP_MD_CTX_reset(ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return EVP_DigestInit_ex(ctx, type, NULL); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-09-26 23:15:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-26 05:37:02 +08:00
										 |  |  | int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     EVP_MD_CTX_clear_flags(ctx, EVP_MD_CTX_FLAG_CLEANED); | 
					
						
							| 
									
										
										
										
											2003-01-31 01:39:26 +08:00
										 |  |  | #ifndef OPENSSL_NO_ENGINE
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Whether it's nice or not, "Inits" can be used on "Final"'d contexts so | 
					
						
							|  |  |  |      * this context may already have an ENGINE! Try to avoid releasing the | 
					
						
							|  |  |  |      * previous handle, re-querying for an ENGINE, and having a | 
					
						
							| 
									
										
										
										
											2016-02-06 04:23:54 +08:00
										 |  |  |      * reinitialisation, when it may all be unnecessary. | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-05-24 02:07:47 +08:00
										 |  |  |     if (ctx->engine && ctx->digest && | 
					
						
							|  |  |  |         (type == NULL || (type->type == ctx->digest->type))) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto skip_to_init; | 
					
						
							|  |  |  |     if (type) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Ensure an ENGINE left lying around from last time is cleared (the | 
					
						
							|  |  |  |          * previous check attempted to avoid this if the same ENGINE and | 
					
						
							|  |  |  |          * EVP_MD could be used). | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2016-02-26 01:09:06 +08:00
										 |  |  |         ENGINE_finish(ctx->engine); | 
					
						
							|  |  |  |         if (impl != NULL) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             if (!ENGINE_init(impl)) { | 
					
						
							|  |  |  |                 EVPerr(EVP_F_EVP_DIGESTINIT_EX, EVP_R_INITIALIZATION_ERROR); | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2016-02-26 01:09:06 +08:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             /* Ask if an ENGINE is reserved for this job */ | 
					
						
							|  |  |  |             impl = ENGINE_get_digest_engine(type->type); | 
					
						
							| 
									
										
										
										
											2016-02-26 01:09:06 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (impl != NULL) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             /* There's an ENGINE for this job ... (apparently) */ | 
					
						
							|  |  |  |             const EVP_MD *d = ENGINE_get_digest(impl, type->type); | 
					
						
							| 
									
										
										
										
											2016-02-26 01:09:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (d == NULL) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 EVPerr(EVP_F_EVP_DIGESTINIT_EX, EVP_R_INITIALIZATION_ERROR); | 
					
						
							|  |  |  |                 ENGINE_finish(impl); | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             /* We'll use the ENGINE's private digest definition */ | 
					
						
							|  |  |  |             type = d; | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * Store the ENGINE functional reference so we know 'type' came | 
					
						
							|  |  |  |              * from an ENGINE and we need to release it when done. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             ctx->engine = impl; | 
					
						
							|  |  |  |         } else | 
					
						
							|  |  |  |             ctx->engine = NULL; | 
					
						
							| 
									
										
										
										
											2015-03-11 23:41:52 +08:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         if (!ctx->digest) { | 
					
						
							|  |  |  |             EVPerr(EVP_F_EVP_DIGESTINIT_EX, EVP_R_NO_DIGEST_SET); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         type = ctx->digest; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-03-12 10:31:40 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (ctx->digest != type) { | 
					
						
							| 
									
										
										
										
											2016-03-15 01:06:19 +08:00
										 |  |  |         if (ctx->digest && ctx->digest->ctx_size) { | 
					
						
							| 
									
										
										
										
											2016-05-24 02:07:47 +08:00
										 |  |  |             OPENSSL_clear_free(ctx->md_data, ctx->digest->ctx_size); | 
					
						
							| 
									
										
										
										
											2016-03-15 01:06:19 +08:00
										 |  |  |             ctx->md_data = NULL; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         ctx->digest = type; | 
					
						
							|  |  |  |         if (!(ctx->flags & EVP_MD_CTX_FLAG_NO_INIT) && type->ctx_size) { | 
					
						
							|  |  |  |             ctx->update = type->update; | 
					
						
							| 
									
										
										
										
											2016-01-22 03:53:18 +08:00
										 |  |  |             ctx->md_data = OPENSSL_zalloc(type->ctx_size); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             if (ctx->md_data == NULL) { | 
					
						
							|  |  |  |                 EVPerr(EVP_F_EVP_DIGESTINIT_EX, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-01-31 01:39:26 +08:00
										 |  |  | #ifndef OPENSSL_NO_ENGINE
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |  skip_to_init: | 
					
						
							| 
									
										
										
										
											2003-01-31 01:39:26 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (ctx->pctx) { | 
					
						
							|  |  |  |         int r; | 
					
						
							|  |  |  |         r = EVP_PKEY_CTX_ctrl(ctx->pctx, -1, EVP_PKEY_OP_TYPE_SIG, | 
					
						
							|  |  |  |                               EVP_PKEY_CTRL_DIGESTINIT, 0, ctx); | 
					
						
							|  |  |  |         if (r <= 0 && (r != -2)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ctx->flags & EVP_MD_CTX_FLAG_NO_INIT) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     return ctx->digest->init(ctx); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-04 20:06:09 +08:00
										 |  |  | int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *data, size_t count) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return ctx->update(ctx, data, count); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-31 07:57:25 +08:00
										 |  |  | /* The caller can assume that this removes any secret data from the context */ | 
					
						
							| 
									
										
										
										
											2001-03-08 22:04:22 +08:00
										 |  |  | int EVP_DigestFinal(EVP_MD_CTX *ctx, unsigned char *md, unsigned int *size) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  |     ret = EVP_DigestFinal_ex(ctx, md, size); | 
					
						
							| 
									
										
										
										
											2015-12-02 07:26:19 +08:00
										 |  |  |     EVP_MD_CTX_reset(ctx); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-10-16 09:24:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* The caller can assume that this removes any secret data from the context */ | 
					
						
							|  |  |  | int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, unsigned char *md, unsigned int *size) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											2002-11-13 23:43:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     OPENSSL_assert(ctx->digest->md_size <= EVP_MAX_MD_SIZE); | 
					
						
							|  |  |  |     ret = ctx->digest->final(ctx, md); | 
					
						
							|  |  |  |     if (size != NULL) | 
					
						
							|  |  |  |         *size = ctx->digest->md_size; | 
					
						
							|  |  |  |     if (ctx->digest->cleanup) { | 
					
						
							|  |  |  |         ctx->digest->cleanup(ctx); | 
					
						
							|  |  |  |         EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_CLEANED); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-06-25 06:37:27 +08:00
										 |  |  |     OPENSSL_cleanse(ctx->md_data, ctx->digest->ctx_size); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1999-01-31 20:14:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-11 04:39:40 +08:00
										 |  |  | int EVP_DigestFinalXOF(EVP_MD_CTX *ctx, unsigned char *md, size_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ctx->digest->flags & EVP_MD_FLAG_XOF | 
					
						
							|  |  |  |         && size <= INT_MAX | 
					
						
							|  |  |  |         && ctx->digest->md_ctrl(ctx, EVP_MD_CTRL_XOF_LEN, (int)size, NULL)) { | 
					
						
							|  |  |  |         ret = ctx->digest->final(ctx, md); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (ctx->digest->cleanup != NULL) { | 
					
						
							|  |  |  |             ctx->digest->cleanup(ctx); | 
					
						
							|  |  |  |             EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_CLEANED); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         OPENSSL_cleanse(ctx->md_data, ctx->digest->ctx_size); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         EVPerr(EVP_F_EVP_DIGESTFINALXOF, EVP_R_NOT_XOF_OR_INVALID_LENGTH); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-31 07:57:25 +08:00
										 |  |  | int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-12-02 07:26:19 +08:00
										 |  |  |     EVP_MD_CTX_reset(out); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return EVP_MD_CTX_copy_ex(out, in); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-10-16 09:24:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     unsigned char *tmp_buf; | 
					
						
							|  |  |  |     if ((in == NULL) || (in->digest == NULL)) { | 
					
						
							|  |  |  |         EVPerr(EVP_F_EVP_MD_CTX_COPY_EX, EVP_R_INPUT_NOT_INITIALIZED); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-01-31 01:39:26 +08:00
										 |  |  | #ifndef OPENSSL_NO_ENGINE
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /* Make sure it's safe to copy a digest context using an ENGINE */ | 
					
						
							|  |  |  |     if (in->engine && !ENGINE_init(in->engine)) { | 
					
						
							|  |  |  |         EVPerr(EVP_F_EVP_MD_CTX_COPY_EX, ERR_R_ENGINE_LIB); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-01-31 01:39:26 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-09-03 04:05:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (out->digest == in->digest) { | 
					
						
							|  |  |  |         tmp_buf = out->md_data; | 
					
						
							|  |  |  |         EVP_MD_CTX_set_flags(out, EVP_MD_CTX_FLAG_REUSE); | 
					
						
							|  |  |  |     } else | 
					
						
							|  |  |  |         tmp_buf = NULL; | 
					
						
							| 
									
										
										
										
											2015-12-02 07:26:19 +08:00
										 |  |  |     EVP_MD_CTX_reset(out); | 
					
						
							| 
									
										
										
										
											2015-05-02 11:10:31 +08:00
										 |  |  |     memcpy(out, in, sizeof(*out)); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-04 17:21:10 +08:00
										 |  |  |     /* copied EVP_MD_CTX should free the copied EVP_PKEY_CTX */ | 
					
						
							|  |  |  |     EVP_MD_CTX_clear_flags(out, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-18 20:03:45 +08:00
										 |  |  |     /* Null these variables, since they are getting fixed up
 | 
					
						
							|  |  |  |      * properly below.  Anything else may cause a memleak and/or | 
					
						
							|  |  |  |      * double free if any of the memory allocations below fail | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     out->md_data = NULL; | 
					
						
							|  |  |  |     out->pctx = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (in->md_data && out->digest->ctx_size) { | 
					
						
							|  |  |  |         if (tmp_buf) | 
					
						
							|  |  |  |             out->md_data = tmp_buf; | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             out->md_data = OPENSSL_malloc(out->digest->ctx_size); | 
					
						
							| 
									
										
										
										
											2015-10-30 19:12:26 +08:00
										 |  |  |             if (out->md_data == NULL) { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 EVPerr(EVP_F_EVP_MD_CTX_COPY_EX, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         memcpy(out->md_data, in->md_data, out->digest->ctx_size); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-09-03 04:05:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     out->update = in->update; | 
					
						
							| 
									
										
										
										
											2004-02-01 21:39:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (in->pctx) { | 
					
						
							|  |  |  |         out->pctx = EVP_PKEY_CTX_dup(in->pctx); | 
					
						
							|  |  |  |         if (!out->pctx) { | 
					
						
							| 
									
										
										
										
											2015-12-02 07:26:19 +08:00
										 |  |  |             EVP_MD_CTX_reset(out); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-04-12 21:02:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (out->digest->copy) | 
					
						
							|  |  |  |         return out->digest->copy(out, in); | 
					
						
							| 
									
										
										
										
											2006-05-25 08:55:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-02-02 08:45:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-15 19:29:55 +08:00
										 |  |  | int EVP_Digest(const void *data, size_t count, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                unsigned char *md, unsigned int *size, const EVP_MD *type, | 
					
						
							|  |  |  |                ENGINE *impl) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-12-02 07:49:35 +08:00
										 |  |  |     EVP_MD_CTX *ctx = EVP_MD_CTX_new(); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											2001-07-31 07:57:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-01 08:38:35 +08:00
										 |  |  |     if (ctx == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_ONESHOT); | 
					
						
							|  |  |  |     ret = EVP_DigestInit_ex(ctx, type, impl) | 
					
						
							|  |  |  |         && EVP_DigestUpdate(ctx, data, count) | 
					
						
							|  |  |  |         && EVP_DigestFinal_ex(ctx, md, size); | 
					
						
							| 
									
										
										
										
											2015-12-02 07:49:35 +08:00
										 |  |  |     EVP_MD_CTX_free(ctx); | 
					
						
							| 
									
										
										
										
											2001-07-31 07:57:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-07-31 07:57:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-24 00:07:46 +08:00
										 |  |  | int EVP_MD_CTX_ctrl(EVP_MD_CTX *ctx, int cmd, int p1, void *p2) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (ctx->digest && ctx->digest->md_ctrl) { | 
					
						
							|  |  |  |         int ret = ctx->digest->md_ctrl(ctx, cmd, p1, p2); | 
					
						
							|  |  |  |         if (ret <= 0) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } |