1 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
2 | * All rights reserved. |
3 | * |
4 | * This package is an SSL implementation written |
5 | * by Eric Young (eay@cryptsoft.com). |
6 | * The implementation was written so as to conform with Netscapes SSL. |
7 | * |
8 | * This library is free for commercial and non-commercial use as long as |
9 | * the following conditions are aheared to. The following conditions |
10 | * apply to all code found in this distribution, be it the RC4, RSA, |
11 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation |
12 | * included with this distribution is covered by the same copyright terms |
13 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). |
14 | * |
15 | * Copyright remains Eric Young's, and as such any Copyright notices in |
16 | * the code are not to be removed. |
17 | * If this package is used in a product, Eric Young should be given attribution |
18 | * as the author of the parts of the library used. |
19 | * This can be in the form of a textual message at program startup or |
20 | * in documentation (online or textual) provided with the package. |
21 | * |
22 | * Redistribution and use in source and binary forms, with or without |
23 | * modification, are permitted provided that the following conditions |
24 | * are met: |
25 | * 1. Redistributions of source code must retain the copyright |
26 | * notice, this list of conditions and the following disclaimer. |
27 | * 2. Redistributions in binary form must reproduce the above copyright |
28 | * notice, this list of conditions and the following disclaimer in the |
29 | * documentation and/or other materials provided with the distribution. |
30 | * 3. All advertising materials mentioning features or use of this software |
31 | * must display the following acknowledgement: |
32 | * "This product includes cryptographic software written by |
33 | * Eric Young (eay@cryptsoft.com)" |
34 | * The word 'cryptographic' can be left out if the rouines from the library |
35 | * being used are not cryptographic related :-). |
36 | * 4. If you include any Windows specific code (or a derivative thereof) from |
37 | * the apps directory (application code) you must include an acknowledgement: |
38 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" |
39 | * |
40 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND |
41 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
43 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
44 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
45 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
46 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
48 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
49 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
50 | * SUCH DAMAGE. |
51 | * |
52 | * The licence and distribution terms for any publically available version or |
53 | * derivative of this code cannot be changed. i.e. this code cannot simply be |
54 | * copied and put under another distribution licence |
55 | * [including the GNU Public Licence.] */ |
56 | |
57 | #include <openssl/digest.h> |
58 | |
59 | #include <assert.h> |
60 | #include <string.h> |
61 | |
62 | #include <openssl/err.h> |
63 | #include <openssl/mem.h> |
64 | |
65 | #include "internal.h" |
66 | #include "../../internal.h" |
67 | |
68 | |
69 | int EVP_MD_type(const EVP_MD *md) { return md->type; } |
70 | |
71 | uint32_t EVP_MD_flags(const EVP_MD *md) { return md->flags; } |
72 | |
73 | size_t EVP_MD_size(const EVP_MD *md) { return md->md_size; } |
74 | |
75 | size_t EVP_MD_block_size(const EVP_MD *md) { return md->block_size; } |
76 | |
77 | |
78 | void EVP_MD_CTX_init(EVP_MD_CTX *ctx) { |
79 | OPENSSL_memset(ctx, 0, sizeof(EVP_MD_CTX)); |
80 | } |
81 | |
82 | EVP_MD_CTX *EVP_MD_CTX_new(void) { |
83 | EVP_MD_CTX *ctx = OPENSSL_malloc(sizeof(EVP_MD_CTX)); |
84 | |
85 | if (ctx) { |
86 | EVP_MD_CTX_init(ctx); |
87 | } |
88 | |
89 | return ctx; |
90 | } |
91 | |
92 | EVP_MD_CTX *EVP_MD_CTX_create(void) { return EVP_MD_CTX_new(); } |
93 | |
94 | int EVP_MD_CTX_cleanup(EVP_MD_CTX *ctx) { |
95 | OPENSSL_free(ctx->md_data); |
96 | |
97 | assert(ctx->pctx == NULL || ctx->pctx_ops != NULL); |
98 | if (ctx->pctx_ops) { |
99 | ctx->pctx_ops->free(ctx->pctx); |
100 | } |
101 | |
102 | EVP_MD_CTX_init(ctx); |
103 | |
104 | return 1; |
105 | } |
106 | |
107 | void EVP_MD_CTX_free(EVP_MD_CTX *ctx) { |
108 | if (!ctx) { |
109 | return; |
110 | } |
111 | |
112 | EVP_MD_CTX_cleanup(ctx); |
113 | OPENSSL_free(ctx); |
114 | } |
115 | |
116 | void EVP_MD_CTX_destroy(EVP_MD_CTX *ctx) { EVP_MD_CTX_free(ctx); } |
117 | |
118 | int EVP_DigestFinalXOF(EVP_MD_CTX *ctx, uint8_t *out, size_t len) { |
119 | OPENSSL_PUT_ERROR(DIGEST, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); |
120 | return 0; |
121 | } |
122 | |
123 | int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in) { |
124 | // |in->digest| may be NULL if this is a signing |EVP_MD_CTX| for, e.g., |
125 | // Ed25519 which does not hash with |EVP_MD_CTX|. |
126 | if (in == NULL || (in->pctx == NULL && in->digest == NULL)) { |
127 | OPENSSL_PUT_ERROR(DIGEST, DIGEST_R_INPUT_NOT_INITIALIZED); |
128 | return 0; |
129 | } |
130 | |
131 | EVP_PKEY_CTX *pctx = NULL; |
132 | assert(in->pctx == NULL || in->pctx_ops != NULL); |
133 | if (in->pctx) { |
134 | pctx = in->pctx_ops->dup(in->pctx); |
135 | if (!pctx) { |
136 | OPENSSL_PUT_ERROR(DIGEST, ERR_R_MALLOC_FAILURE); |
137 | return 0; |
138 | } |
139 | } |
140 | |
141 | uint8_t *tmp_buf = NULL; |
142 | if (in->digest != NULL) { |
143 | if (out->digest != in->digest) { |
144 | assert(in->digest->ctx_size != 0); |
145 | tmp_buf = OPENSSL_malloc(in->digest->ctx_size); |
146 | if (tmp_buf == NULL) { |
147 | if (pctx) { |
148 | in->pctx_ops->free(pctx); |
149 | } |
150 | OPENSSL_PUT_ERROR(DIGEST, ERR_R_MALLOC_FAILURE); |
151 | return 0; |
152 | } |
153 | } else { |
154 | // |md_data| will be the correct size in this case. It's removed from |
155 | // |out| so that |EVP_MD_CTX_cleanup| doesn't free it, and then it's |
156 | // reused. |
157 | tmp_buf = out->md_data; |
158 | out->md_data = NULL; |
159 | } |
160 | } |
161 | |
162 | EVP_MD_CTX_cleanup(out); |
163 | |
164 | out->digest = in->digest; |
165 | out->md_data = tmp_buf; |
166 | if (in->digest != NULL) { |
167 | OPENSSL_memcpy(out->md_data, in->md_data, in->digest->ctx_size); |
168 | } |
169 | out->pctx = pctx; |
170 | out->pctx_ops = in->pctx_ops; |
171 | assert(out->pctx == NULL || out->pctx_ops != NULL); |
172 | |
173 | return 1; |
174 | } |
175 | |
176 | int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in) { |
177 | EVP_MD_CTX_init(out); |
178 | return EVP_MD_CTX_copy_ex(out, in); |
179 | } |
180 | |
181 | int EVP_MD_CTX_reset(EVP_MD_CTX *ctx) { |
182 | EVP_MD_CTX_cleanup(ctx); |
183 | EVP_MD_CTX_init(ctx); |
184 | return 1; |
185 | } |
186 | |
187 | int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *engine) { |
188 | if (ctx->digest != type) { |
189 | assert(type->ctx_size != 0); |
190 | uint8_t *md_data = OPENSSL_malloc(type->ctx_size); |
191 | if (md_data == NULL) { |
192 | OPENSSL_PUT_ERROR(DIGEST, ERR_R_MALLOC_FAILURE); |
193 | return 0; |
194 | } |
195 | |
196 | OPENSSL_free(ctx->md_data); |
197 | ctx->md_data = md_data; |
198 | ctx->digest = type; |
199 | } |
200 | |
201 | assert(ctx->pctx == NULL || ctx->pctx_ops != NULL); |
202 | |
203 | ctx->digest->init(ctx); |
204 | return 1; |
205 | } |
206 | |
207 | int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type) { |
208 | EVP_MD_CTX_init(ctx); |
209 | return EVP_DigestInit_ex(ctx, type, NULL); |
210 | } |
211 | |
212 | int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *data, size_t len) { |
213 | ctx->digest->update(ctx, data, len); |
214 | return 1; |
215 | } |
216 | |
217 | int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, uint8_t *md_out, unsigned int *size) { |
218 | assert(ctx->digest->md_size <= EVP_MAX_MD_SIZE); |
219 | ctx->digest->final(ctx, md_out); |
220 | if (size != NULL) { |
221 | *size = ctx->digest->md_size; |
222 | } |
223 | OPENSSL_cleanse(ctx->md_data, ctx->digest->ctx_size); |
224 | return 1; |
225 | } |
226 | |
227 | int EVP_DigestFinal(EVP_MD_CTX *ctx, uint8_t *md, unsigned int *size) { |
228 | (void)EVP_DigestFinal_ex(ctx, md, size); |
229 | EVP_MD_CTX_cleanup(ctx); |
230 | return 1; |
231 | } |
232 | |
233 | int EVP_Digest(const void *data, size_t count, uint8_t *out_md, |
234 | unsigned int *out_size, const EVP_MD *type, ENGINE *impl) { |
235 | EVP_MD_CTX ctx; |
236 | int ret; |
237 | |
238 | EVP_MD_CTX_init(&ctx); |
239 | ret = EVP_DigestInit_ex(&ctx, type, impl) && |
240 | EVP_DigestUpdate(&ctx, data, count) && |
241 | EVP_DigestFinal_ex(&ctx, out_md, out_size); |
242 | EVP_MD_CTX_cleanup(&ctx); |
243 | |
244 | return ret; |
245 | } |
246 | |
247 | |
248 | const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx) { |
249 | if (ctx == NULL) { |
250 | return NULL; |
251 | } |
252 | return ctx->digest; |
253 | } |
254 | |
255 | size_t EVP_MD_CTX_size(const EVP_MD_CTX *ctx) { |
256 | return EVP_MD_size(EVP_MD_CTX_md(ctx)); |
257 | } |
258 | |
259 | size_t EVP_MD_CTX_block_size(const EVP_MD_CTX *ctx) { |
260 | return EVP_MD_block_size(EVP_MD_CTX_md(ctx)); |
261 | } |
262 | |
263 | int EVP_MD_CTX_type(const EVP_MD_CTX *ctx) { |
264 | return EVP_MD_type(EVP_MD_CTX_md(ctx)); |
265 | } |
266 | |
267 | int EVP_add_digest(const EVP_MD *digest) { |
268 | return 1; |
269 | } |
270 | |