Coverage Report

Created: 2025-12-31 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl30/crypto/evp/digest.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
/* We need to use some engine deprecated APIs */
11
#define OPENSSL_SUPPRESS_DEPRECATED
12
13
#include <stdio.h>
14
#include <openssl/objects.h>
15
#include <openssl/evp.h>
16
#include <openssl/ec.h>
17
#ifndef FIPS_MODULE
18
#include <openssl/engine.h>
19
#endif
20
#include <openssl/params.h>
21
#include <openssl/core_names.h>
22
#include "internal/cryptlib.h"
23
#include "internal/provider.h"
24
#include "internal/core.h"
25
#include "crypto/evp.h"
26
#include "evp_local.h"
27
28
static void cleanup_old_md_data(EVP_MD_CTX *ctx, int force)
29
1.28G
{
30
1.28G
    if (ctx->digest != NULL) {
31
1.26G
        if (ctx->digest->cleanup != NULL
32
0
            && !EVP_MD_CTX_test_flags(ctx, EVP_MD_CTX_FLAG_CLEANED))
33
0
            ctx->digest->cleanup(ctx);
34
1.26G
        if (ctx->md_data != NULL && ctx->digest->ctx_size > 0
35
0
            && (!EVP_MD_CTX_test_flags(ctx, EVP_MD_CTX_FLAG_REUSE)
36
0
                || force)) {
37
0
            OPENSSL_clear_free(ctx->md_data, ctx->digest->ctx_size);
38
0
            ctx->md_data = NULL;
39
0
        }
40
1.26G
    }
41
1.28G
}
42
43
void evp_md_ctx_clear_digest(EVP_MD_CTX *ctx, int force, int keep_fetched)
44
27.7M
{
45
27.7M
    if (ctx->algctx != NULL) {
46
11.0M
        if (ctx->digest != NULL && ctx->digest->freectx != NULL)
47
11.0M
            ctx->digest->freectx(ctx->algctx);
48
11.0M
        ctx->algctx = NULL;
49
11.0M
        EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_CLEANED);
50
11.0M
    }
51
52
    /* Code below to be removed when legacy support is dropped. */
53
54
    /*
55
     * Don't assume ctx->md_data was cleaned in EVP_Digest_Final, because
56
     * sometimes only copies of the context are ever finalised.
57
     */
58
27.7M
    cleanup_old_md_data(ctx, force);
59
27.7M
    if (force)
60
100k
        ctx->digest = NULL;
61
62
27.7M
#if !defined(FIPS_MODULE) && !defined(OPENSSL_NO_ENGINE)
63
27.7M
    ENGINE_finish(ctx->engine);
64
27.7M
    ctx->engine = NULL;
65
27.7M
#endif
66
67
    /* Non legacy code, this has to be later than the ctx->digest cleaning */
68
27.7M
    if (!keep_fetched) {
69
20.3M
        EVP_MD_free(ctx->fetched_digest);
70
20.3M
        ctx->fetched_digest = NULL;
71
20.3M
        ctx->reqdigest = NULL;
72
20.3M
    }
73
27.7M
}
74
75
static int evp_md_ctx_reset_ex(EVP_MD_CTX *ctx, int keep_fetched)
76
36.4M
{
77
36.4M
    if (ctx == NULL)
78
8.82M
        return 1;
79
80
27.6M
#ifndef FIPS_MODULE
81
    /*
82
     * pctx should be freed by the user of EVP_MD_CTX
83
     * if EVP_MD_CTX_FLAG_KEEP_PKEY_CTX is set
84
     */
85
27.6M
    if (!EVP_MD_CTX_test_flags(ctx, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX)) {
86
27.6M
        EVP_PKEY_CTX_free(ctx->pctx);
87
27.6M
        ctx->pctx = NULL;
88
27.6M
    }
89
27.6M
#endif
90
91
27.6M
    evp_md_ctx_clear_digest(ctx, 0, keep_fetched);
92
27.6M
    if (!keep_fetched)
93
20.2M
        OPENSSL_cleanse(ctx, sizeof(*ctx));
94
95
27.6M
    return 1;
96
36.4M
}
97
98
/* This call frees resources associated with the context */
99
int EVP_MD_CTX_reset(EVP_MD_CTX *ctx)
100
29.0M
{
101
29.0M
    return evp_md_ctx_reset_ex(ctx, 0);
102
29.0M
}
103
104
#ifndef FIPS_MODULE
105
EVP_MD_CTX *evp_md_ctx_new_ex(EVP_PKEY *pkey, const ASN1_OCTET_STRING *id,
106
    OSSL_LIB_CTX *libctx, const char *propq)
107
15.8k
{
108
15.8k
    EVP_MD_CTX *ctx;
109
15.8k
    EVP_PKEY_CTX *pctx = NULL;
110
111
15.8k
    if ((ctx = EVP_MD_CTX_new()) == NULL
112
15.8k
        || (pctx = EVP_PKEY_CTX_new_from_pkey(libctx, pkey, propq)) == NULL) {
113
667
        ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE);
114
667
        goto err;
115
667
    }
116
117
15.2k
    if (id != NULL && EVP_PKEY_CTX_set1_id(pctx, id->data, id->length) <= 0)
118
0
        goto err;
119
120
15.2k
    EVP_MD_CTX_set_pkey_ctx(ctx, pctx);
121
15.2k
    return ctx;
122
123
667
err:
124
667
    EVP_PKEY_CTX_free(pctx);
125
667
    EVP_MD_CTX_free(ctx);
126
667
    return NULL;
127
15.2k
}
128
#endif
129
130
EVP_MD_CTX *EVP_MD_CTX_new(void)
131
10.7M
{
132
10.7M
    return OPENSSL_zalloc(sizeof(EVP_MD_CTX));
133
10.7M
}
134
135
void EVP_MD_CTX_free(EVP_MD_CTX *ctx)
136
13.1M
{
137
13.1M
    if (ctx == NULL)
138
2.39M
        return;
139
140
10.7M
    EVP_MD_CTX_reset(ctx);
141
10.7M
    OPENSSL_free(ctx);
142
10.7M
}
143
144
static int evp_md_init_internal(EVP_MD_CTX *ctx, const EVP_MD *type,
145
    const OSSL_PARAM params[], ENGINE *impl)
146
895k
{
147
895k
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
148
895k
    ENGINE *tmpimpl = NULL;
149
895k
#endif
150
151
895k
#if !defined(FIPS_MODULE)
152
895k
    if (ctx->pctx != NULL
153
0
        && EVP_PKEY_CTX_IS_SIGNATURE_OP(ctx->pctx)
154
0
        && ctx->pctx->op.sig.algctx != NULL) {
155
        /*
156
         * Prior to OpenSSL 3.0 calling EVP_DigestInit_ex() on an mdctx
157
         * previously initialised with EVP_DigestSignInit() would retain
158
         * information about the key, and re-initialise for another sign
159
         * operation. So in that case we redirect to EVP_DigestSignInit()
160
         */
161
0
        if (ctx->pctx->operation == EVP_PKEY_OP_SIGNCTX)
162
0
            return EVP_DigestSignInit(ctx, NULL, type, impl, NULL);
163
0
        if (ctx->pctx->operation == EVP_PKEY_OP_VERIFYCTX)
164
0
            return EVP_DigestVerifyInit(ctx, NULL, type, impl, NULL);
165
0
        ERR_raise(ERR_LIB_EVP, EVP_R_UPDATE_ERROR);
166
0
        return 0;
167
0
    }
168
895k
#endif
169
170
895k
    EVP_MD_CTX_clear_flags(ctx, EVP_MD_CTX_FLAG_CLEANED);
171
172
895k
    if (ctx->algctx != NULL) {
173
764k
        if (!ossl_assert(ctx->digest != NULL)) {
174
0
            ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
175
0
            return 0;
176
0
        }
177
764k
        if (ctx->digest->freectx != NULL)
178
764k
            ctx->digest->freectx(ctx->algctx);
179
764k
        ctx->algctx = NULL;
180
764k
    }
181
182
895k
    if (type != NULL) {
183
895k
        ctx->reqdigest = type;
184
895k
    } else {
185
0
        if (ctx->digest == NULL) {
186
0
            ERR_raise(ERR_LIB_EVP, EVP_R_NO_DIGEST_SET);
187
0
            return 0;
188
0
        }
189
0
        type = ctx->digest;
190
0
    }
191
192
    /* Code below to be removed when legacy support is dropped. */
193
895k
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
194
    /*
195
     * Whether it's nice or not, "Inits" can be used on "Final"'d contexts so
196
     * this context may already have an ENGINE! Try to avoid releasing the
197
     * previous handle, re-querying for an ENGINE, and having a
198
     * reinitialisation, when it may all be unnecessary.
199
     */
200
895k
    if (ctx->engine && ctx->digest && (type == NULL || (type->type == ctx->digest->type)))
201
0
        goto skip_to_init;
202
203
895k
    if (type != NULL) {
204
        /*
205
         * Ensure an ENGINE left lying around from last time is cleared (the
206
         * previous check attempted to avoid this if the same ENGINE and
207
         * EVP_MD could be used).
208
         */
209
895k
        ENGINE_finish(ctx->engine);
210
895k
        ctx->engine = NULL;
211
895k
    }
212
213
895k
    if (type != NULL && impl == NULL)
214
895k
        tmpimpl = ENGINE_get_digest_engine(type->type);
215
895k
#endif
216
217
    /*
218
     * If there are engines involved or EVP_MD_CTX_FLAG_NO_INIT is set then we
219
     * should use legacy handling for now.
220
     */
221
895k
    if (ctx->engine != NULL
222
895k
        || impl != NULL
223
895k
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
224
895k
        || tmpimpl != NULL
225
895k
#endif
226
895k
        || (ctx->flags & EVP_MD_CTX_FLAG_NO_INIT) != 0
227
895k
        || (type != NULL && type->origin == EVP_ORIG_METH)
228
895k
        || (type == NULL && ctx->digest != NULL
229
0
            && ctx->digest->origin == EVP_ORIG_METH)) {
230
0
        if (ctx->digest == ctx->fetched_digest)
231
0
            ctx->digest = NULL;
232
0
        EVP_MD_free(ctx->fetched_digest);
233
0
        ctx->fetched_digest = NULL;
234
0
        goto legacy;
235
0
    }
236
237
895k
    cleanup_old_md_data(ctx, 1);
238
239
    /* Start of non-legacy code below */
240
241
895k
    if (type->prov == NULL) {
242
#ifdef FIPS_MODULE
243
        /* We only do explicit fetches inside the FIPS module */
244
        ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
245
        return 0;
246
#else
247
        /* The NULL digest is a special case */
248
80
        EVP_MD *provmd = EVP_MD_fetch(NULL,
249
80
            type->type != NID_undef ? OBJ_nid2sn(type->type)
250
80
                                    : "NULL",
251
80
            "");
252
253
80
        if (provmd == NULL) {
254
0
            ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
255
0
            return 0;
256
0
        }
257
80
        type = provmd;
258
80
        EVP_MD_free(ctx->fetched_digest);
259
80
        ctx->fetched_digest = provmd;
260
80
#endif
261
80
    }
262
263
895k
    if (ctx->algctx != NULL && ctx->digest != NULL && ctx->digest != type) {
264
0
        if (ctx->digest->freectx != NULL)
265
0
            ctx->digest->freectx(ctx->algctx);
266
0
        ctx->algctx = NULL;
267
0
    }
268
895k
    if (type->prov != NULL && ctx->fetched_digest != type) {
269
131k
        if (!EVP_MD_up_ref((EVP_MD *)type)) {
270
0
            ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
271
0
            return 0;
272
0
        }
273
131k
        EVP_MD_free(ctx->fetched_digest);
274
131k
        ctx->fetched_digest = (EVP_MD *)type;
275
131k
    }
276
895k
    ctx->digest = type;
277
895k
    if (ctx->algctx == NULL) {
278
895k
        ctx->algctx = ctx->digest->newctx(ossl_provider_ctx(type->prov));
279
895k
        if (ctx->algctx == NULL) {
280
0
            ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
281
0
            return 0;
282
0
        }
283
895k
    }
284
285
895k
    if (ctx->digest->dinit == NULL) {
286
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
287
0
        return 0;
288
0
    }
289
290
895k
    return ctx->digest->dinit(ctx->algctx, params);
291
292
    /* Code below to be removed when legacy support is dropped. */
293
0
legacy:
294
295
0
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
296
0
    if (type) {
297
0
        if (impl != NULL) {
298
0
            if (!ENGINE_init(impl)) {
299
0
                ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
300
0
                return 0;
301
0
            }
302
0
        } else {
303
            /* Ask if an ENGINE is reserved for this job */
304
0
            impl = tmpimpl;
305
0
        }
306
0
        if (impl != NULL) {
307
            /* There's an ENGINE for this job ... (apparently) */
308
0
            const EVP_MD *d = ENGINE_get_digest(impl, type->type);
309
310
0
            if (d == NULL) {
311
0
                ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
312
0
                ENGINE_finish(impl);
313
0
                return 0;
314
0
            }
315
            /* We'll use the ENGINE's private digest definition */
316
0
            type = d;
317
            /*
318
             * Store the ENGINE functional reference so we know 'type' came
319
             * from an ENGINE and we need to release it when done.
320
             */
321
0
            ctx->engine = impl;
322
0
        } else
323
0
            ctx->engine = NULL;
324
0
    }
325
0
#endif
326
0
    if (ctx->digest != type) {
327
0
        cleanup_old_md_data(ctx, 1);
328
329
0
        ctx->digest = type;
330
0
        if (!(ctx->flags & EVP_MD_CTX_FLAG_NO_INIT) && type->ctx_size) {
331
0
            ctx->update = type->update;
332
0
            ctx->md_data = OPENSSL_zalloc(type->ctx_size);
333
0
            if (ctx->md_data == NULL) {
334
0
                ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
335
0
                return 0;
336
0
            }
337
0
        }
338
0
    }
339
0
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
340
0
skip_to_init:
341
0
#endif
342
0
#ifndef FIPS_MODULE
343
0
    if (ctx->pctx != NULL
344
0
        && (!EVP_PKEY_CTX_IS_SIGNATURE_OP(ctx->pctx)
345
0
            || ctx->pctx->op.sig.signature == NULL)) {
346
0
        int r;
347
0
        r = EVP_PKEY_CTX_ctrl(ctx->pctx, -1, EVP_PKEY_OP_TYPE_SIG,
348
0
            EVP_PKEY_CTRL_DIGESTINIT, 0, ctx);
349
0
        if (r <= 0 && (r != -2))
350
0
            return 0;
351
0
    }
352
0
#endif
353
0
    if (ctx->flags & EVP_MD_CTX_FLAG_NO_INIT)
354
0
        return 1;
355
0
    return ctx->digest->init(ctx);
356
0
}
357
358
int EVP_DigestInit_ex2(EVP_MD_CTX *ctx, const EVP_MD *type,
359
    const OSSL_PARAM params[])
360
1.24G
{
361
1.24G
    return evp_md_init_internal(ctx, type, params, NULL);
362
1.24G
}
363
364
int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type)
365
23
{
366
23
    EVP_MD_CTX_reset(ctx);
367
23
    return evp_md_init_internal(ctx, type, NULL, NULL);
368
23
}
369
370
int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl)
371
7.65M
{
372
7.65M
    return evp_md_init_internal(ctx, type, NULL, impl);
373
7.65M
}
374
375
int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *data, size_t count)
376
1.01M
{
377
1.01M
    if (count == 0)
378
6.20k
        return 1;
379
380
1.00M
    if (ctx->pctx != NULL
381
0
        && EVP_PKEY_CTX_IS_SIGNATURE_OP(ctx->pctx)
382
0
        && ctx->pctx->op.sig.algctx != NULL) {
383
        /*
384
         * Prior to OpenSSL 3.0 EVP_DigestSignUpdate() and
385
         * EVP_DigestVerifyUpdate() were just macros for EVP_DigestUpdate().
386
         * Some code calls EVP_DigestUpdate() directly even when initialised
387
         * with EVP_DigestSignInit_ex() or
388
         * EVP_DigestVerifyInit_ex(), so we detect that and redirect to
389
         * the correct EVP_Digest*Update() function
390
         */
391
0
        if (ctx->pctx->operation == EVP_PKEY_OP_SIGNCTX)
392
0
            return EVP_DigestSignUpdate(ctx, data, count);
393
0
        if (ctx->pctx->operation == EVP_PKEY_OP_VERIFYCTX)
394
0
            return EVP_DigestVerifyUpdate(ctx, data, count);
395
0
        ERR_raise(ERR_LIB_EVP, EVP_R_UPDATE_ERROR);
396
0
        return 0;
397
0
    }
398
399
1.00M
    if (ctx->digest == NULL
400
1.00M
        || ctx->digest->prov == NULL
401
1.00M
        || (ctx->flags & EVP_MD_CTX_FLAG_NO_INIT) != 0)
402
0
        goto legacy;
403
404
1.00M
    if (ctx->digest->dupdate == NULL) {
405
0
        ERR_raise(ERR_LIB_EVP, EVP_R_UPDATE_ERROR);
406
0
        return 0;
407
0
    }
408
1.00M
    return ctx->digest->dupdate(ctx->algctx, data, count);
409
410
    /* Code below to be removed when legacy support is dropped. */
411
0
legacy:
412
0
    return ctx->update != NULL ? ctx->update(ctx, data, count) : 0;
413
1.00M
}
414
415
/* The caller can assume that this removes any secret data from the context */
416
int EVP_DigestFinal(EVP_MD_CTX *ctx, unsigned char *md, unsigned int *size)
417
206k
{
418
206k
    int ret;
419
206k
    ret = EVP_DigestFinal_ex(ctx, md, size);
420
206k
    EVP_MD_CTX_reset(ctx);
421
206k
    return ret;
422
206k
}
423
424
/* The caller can assume that this removes any secret data from the context */
425
int EVP_DigestFinal_ex(EVP_MD_CTX *ctx, unsigned char *md, unsigned int *isize)
426
941k
{
427
941k
    int ret, sz;
428
941k
    size_t size = 0;
429
941k
    size_t mdsize = 0;
430
431
941k
    if (ctx->digest == NULL)
432
0
        return 0;
433
434
941k
    sz = EVP_MD_get_size(ctx->digest);
435
941k
    if (sz < 0)
436
0
        return 0;
437
941k
    mdsize = sz;
438
941k
    if (ctx->digest->prov == NULL)
439
0
        goto legacy;
440
441
941k
    if (ctx->digest->dfinal == NULL) {
442
0
        ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
443
0
        return 0;
444
0
    }
445
446
941k
    ret = ctx->digest->dfinal(ctx->algctx, md, &size, mdsize);
447
448
941k
    if (isize != NULL) {
449
853k
        if (size <= UINT_MAX) {
450
853k
            *isize = (unsigned int)size;
451
853k
        } else {
452
0
            ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
453
0
            ret = 0;
454
0
        }
455
853k
    }
456
457
941k
    return ret;
458
459
    /* Code below to be removed when legacy support is dropped. */
460
0
legacy:
461
0
    OPENSSL_assert(mdsize <= EVP_MAX_MD_SIZE);
462
0
    ret = ctx->digest->final(ctx, md);
463
0
    if (isize != NULL)
464
0
        *isize = mdsize;
465
0
    if (ctx->digest->cleanup) {
466
0
        ctx->digest->cleanup(ctx);
467
0
        EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_CLEANED);
468
0
    }
469
0
    OPENSSL_cleanse(ctx->md_data, ctx->digest->ctx_size);
470
0
    return ret;
471
941k
}
472
473
int EVP_DigestFinalXOF(EVP_MD_CTX *ctx, unsigned char *md, size_t size)
474
40
{
475
40
    int ret = 0;
476
40
    OSSL_PARAM params[2];
477
40
    size_t i = 0;
478
479
40
    if (ctx->digest == NULL) {
480
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_NULL_ALGORITHM);
481
0
        return 0;
482
0
    }
483
484
40
    if (ctx->digest->prov == NULL)
485
0
        goto legacy;
486
487
40
    if (ctx->digest->dfinal == NULL) {
488
0
        ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
489
0
        return 0;
490
0
    }
491
492
40
    params[i++] = OSSL_PARAM_construct_size_t(OSSL_DIGEST_PARAM_XOFLEN, &size);
493
40
    params[i++] = OSSL_PARAM_construct_end();
494
495
40
    if (EVP_MD_CTX_set_params(ctx, params) > 0)
496
40
        ret = ctx->digest->dfinal(ctx->algctx, md, &size, size);
497
498
40
    return ret;
499
500
0
legacy:
501
0
    if (ctx->digest->flags & EVP_MD_FLAG_XOF
502
0
        && size <= INT_MAX
503
0
        && ctx->digest->md_ctrl(ctx, EVP_MD_CTRL_XOF_LEN, (int)size, NULL)) {
504
0
        ret = ctx->digest->final(ctx, md);
505
0
        if (ctx->digest->cleanup != NULL) {
506
0
            ctx->digest->cleanup(ctx);
507
0
            EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_CLEANED);
508
0
        }
509
0
        OPENSSL_cleanse(ctx->md_data, ctx->digest->ctx_size);
510
0
    } else {
511
0
        ERR_raise(ERR_LIB_EVP, EVP_R_NOT_XOF_OR_INVALID_LENGTH);
512
0
    }
513
514
0
    return ret;
515
40
}
516
517
int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in)
518
470k
{
519
470k
    EVP_MD_CTX_reset(out);
520
470k
    return EVP_MD_CTX_copy_ex(out, in);
521
470k
}
522
523
int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in)
524
3.43M
{
525
3.43M
    int digest_change = 0;
526
3.43M
    unsigned char *tmp_buf;
527
528
3.43M
    if (in == NULL) {
529
0
        ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
530
0
        return 0;
531
0
    }
532
533
3.43M
    if (in->digest == NULL) {
534
        /* copying uninitialized digest context */
535
0
        EVP_MD_CTX_reset(out);
536
0
        if (out->fetched_digest != NULL)
537
0
            EVP_MD_free(out->fetched_digest);
538
0
        *out = *in;
539
0
        goto clone_pkey;
540
0
    }
541
542
3.43M
    if (in->digest->prov == NULL
543
3.43M
        || (in->flags & EVP_MD_CTX_FLAG_NO_INIT) != 0)
544
0
        goto legacy;
545
546
3.43M
    if (in->digest->dupctx == NULL) {
547
0
        ERR_raise(ERR_LIB_EVP, EVP_R_NOT_ABLE_TO_COPY_CTX);
548
0
        return 0;
549
0
    }
550
551
3.43M
    evp_md_ctx_reset_ex(out, 1);
552
3.43M
    digest_change = (out->fetched_digest != in->fetched_digest);
553
3.43M
    if (digest_change && out->fetched_digest != NULL)
554
0
        EVP_MD_free(out->fetched_digest);
555
3.43M
    *out = *in;
556
    /* NULL out pointers in case of error */
557
3.43M
    out->pctx = NULL;
558
3.43M
    out->algctx = NULL;
559
560
3.43M
    if (digest_change && in->fetched_digest != NULL)
561
2.50M
        EVP_MD_up_ref(in->fetched_digest);
562
563
3.43M
    if (in->algctx != NULL) {
564
3.27M
        out->algctx = in->digest->dupctx(in->algctx);
565
3.27M
        if (out->algctx == NULL) {
566
0
            ERR_raise(ERR_LIB_EVP, EVP_R_NOT_ABLE_TO_COPY_CTX);
567
0
            return 0;
568
0
        }
569
3.27M
    }
570
571
3.43M
clone_pkey:
572
    /* copied EVP_MD_CTX should free the copied EVP_PKEY_CTX */
573
3.43M
    EVP_MD_CTX_clear_flags(out, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX);
574
3.43M
#ifndef FIPS_MODULE
575
3.43M
    if (in->pctx != NULL) {
576
158k
        out->pctx = EVP_PKEY_CTX_dup(in->pctx);
577
158k
        if (out->pctx == NULL) {
578
0
            ERR_raise(ERR_LIB_EVP, EVP_R_NOT_ABLE_TO_COPY_CTX);
579
0
            EVP_MD_CTX_reset(out);
580
0
            return 0;
581
0
        }
582
158k
    }
583
3.43M
#endif
584
585
3.43M
    return 1;
586
587
    /* Code below to be removed when legacy support is dropped. */
588
0
legacy:
589
0
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
590
    /* Make sure it's safe to copy a digest context using an ENGINE */
591
0
    if (in->engine && !ENGINE_init(in->engine)) {
592
0
        ERR_raise(ERR_LIB_EVP, ERR_R_ENGINE_LIB);
593
0
        return 0;
594
0
    }
595
0
#endif
596
597
0
    if (out->digest == in->digest) {
598
0
        tmp_buf = out->md_data;
599
0
        EVP_MD_CTX_set_flags(out, EVP_MD_CTX_FLAG_REUSE);
600
0
    } else
601
0
        tmp_buf = NULL;
602
0
    EVP_MD_CTX_reset(out);
603
0
    memcpy(out, in, sizeof(*out));
604
605
    /* copied EVP_MD_CTX should free the copied EVP_PKEY_CTX */
606
0
    EVP_MD_CTX_clear_flags(out, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX);
607
608
    /* Null these variables, since they are getting fixed up
609
     * properly below.  Anything else may cause a memleak and/or
610
     * double free if any of the memory allocations below fail
611
     */
612
0
    out->md_data = NULL;
613
0
    out->pctx = NULL;
614
615
0
    if (in->md_data && out->digest->ctx_size) {
616
0
        if (tmp_buf)
617
0
            out->md_data = tmp_buf;
618
0
        else {
619
0
            out->md_data = OPENSSL_malloc(out->digest->ctx_size);
620
0
            if (out->md_data == NULL) {
621
0
                ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
622
0
                return 0;
623
0
            }
624
0
        }
625
0
        memcpy(out->md_data, in->md_data, out->digest->ctx_size);
626
0
    }
627
628
0
    out->update = in->update;
629
630
0
#ifndef FIPS_MODULE
631
0
    if (in->pctx) {
632
0
        out->pctx = EVP_PKEY_CTX_dup(in->pctx);
633
0
        if (!out->pctx) {
634
0
            EVP_MD_CTX_reset(out);
635
0
            return 0;
636
0
        }
637
0
    }
638
0
#endif
639
640
0
    if (out->digest->copy)
641
0
        return out->digest->copy(out, in);
642
643
0
    return 1;
644
0
}
645
646
int EVP_Digest(const void *data, size_t count,
647
    unsigned char *md, unsigned int *size, const EVP_MD *type,
648
    ENGINE *impl)
649
333k
{
650
333k
    EVP_MD_CTX *ctx = EVP_MD_CTX_new();
651
333k
    int ret;
652
653
333k
    if (ctx == NULL)
654
0
        return 0;
655
333k
    EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_ONESHOT);
656
333k
    ret = EVP_DigestInit_ex(ctx, type, impl)
657
333k
        && EVP_DigestUpdate(ctx, data, count)
658
333k
        && EVP_DigestFinal_ex(ctx, md, size);
659
333k
    EVP_MD_CTX_free(ctx);
660
661
333k
    return ret;
662
333k
}
663
664
int EVP_Q_digest(OSSL_LIB_CTX *libctx, const char *name, const char *propq,
665
    const void *data, size_t datalen,
666
    unsigned char *md, size_t *mdlen)
667
0
{
668
0
    EVP_MD *digest = EVP_MD_fetch(libctx, name, propq);
669
0
    unsigned int temp = 0;
670
0
    int ret = 0;
671
672
0
    if (digest != NULL) {
673
0
        ret = EVP_Digest(data, datalen, md, &temp, digest, NULL);
674
0
        EVP_MD_free(digest);
675
0
    }
676
0
    if (mdlen != NULL)
677
0
        *mdlen = temp;
678
0
    return ret;
679
0
}
680
681
int EVP_MD_get_params(const EVP_MD *digest, OSSL_PARAM params[])
682
0
{
683
0
    if (digest != NULL && digest->get_params != NULL)
684
0
        return digest->get_params(params);
685
0
    return 0;
686
0
}
687
688
const OSSL_PARAM *EVP_MD_gettable_params(const EVP_MD *digest)
689
0
{
690
0
    if (digest != NULL && digest->gettable_params != NULL)
691
0
        return digest->gettable_params(
692
0
            ossl_provider_ctx(EVP_MD_get0_provider(digest)));
693
0
    return NULL;
694
0
}
695
696
int EVP_MD_CTX_set_params(EVP_MD_CTX *ctx, const OSSL_PARAM params[])
697
137M
{
698
137M
    EVP_PKEY_CTX *pctx = ctx->pctx;
699
700
    /* If we have a pctx then we should try that first */
701
137M
    if (pctx != NULL
702
0
        && (pctx->operation == EVP_PKEY_OP_VERIFYCTX
703
0
            || pctx->operation == EVP_PKEY_OP_SIGNCTX)
704
0
        && pctx->op.sig.algctx != NULL
705
0
        && pctx->op.sig.signature->set_ctx_md_params != NULL)
706
0
        return pctx->op.sig.signature->set_ctx_md_params(pctx->op.sig.algctx,
707
0
            params);
708
709
137M
    if (ctx->digest != NULL && ctx->digest->set_ctx_params != NULL)
710
137M
        return ctx->digest->set_ctx_params(ctx->algctx, params);
711
712
38
    return 0;
713
137M
}
714
715
const OSSL_PARAM *EVP_MD_settable_ctx_params(const EVP_MD *md)
716
89
{
717
89
    void *provctx;
718
719
89
    if (md != NULL && md->settable_ctx_params != NULL) {
720
75
        provctx = ossl_provider_ctx(EVP_MD_get0_provider(md));
721
75
        return md->settable_ctx_params(NULL, provctx);
722
75
    }
723
14
    return NULL;
724
89
}
725
726
const OSSL_PARAM *EVP_MD_CTX_settable_params(EVP_MD_CTX *ctx)
727
0
{
728
0
    EVP_PKEY_CTX *pctx;
729
0
    void *alg;
730
731
0
    if (ctx == NULL)
732
0
        return NULL;
733
734
    /* If we have a pctx then we should try that first */
735
0
    pctx = ctx->pctx;
736
0
    if (pctx != NULL
737
0
        && (pctx->operation == EVP_PKEY_OP_VERIFYCTX
738
0
            || pctx->operation == EVP_PKEY_OP_SIGNCTX)
739
0
        && pctx->op.sig.algctx != NULL
740
0
        && pctx->op.sig.signature->settable_ctx_md_params != NULL)
741
0
        return pctx->op.sig.signature->settable_ctx_md_params(
742
0
            pctx->op.sig.algctx);
743
744
0
    if (ctx->digest != NULL && ctx->digest->settable_ctx_params != NULL) {
745
0
        alg = ossl_provider_ctx(EVP_MD_get0_provider(ctx->digest));
746
0
        return ctx->digest->settable_ctx_params(ctx->algctx, alg);
747
0
    }
748
749
0
    return NULL;
750
0
}
751
752
int EVP_MD_CTX_get_params(EVP_MD_CTX *ctx, OSSL_PARAM params[])
753
158k
{
754
158k
    EVP_PKEY_CTX *pctx = ctx->pctx;
755
756
    /* If we have a pctx then we should try that first */
757
158k
    if (pctx != NULL
758
0
        && (pctx->operation == EVP_PKEY_OP_VERIFYCTX
759
0
            || pctx->operation == EVP_PKEY_OP_SIGNCTX)
760
0
        && pctx->op.sig.algctx != NULL
761
0
        && pctx->op.sig.signature->get_ctx_md_params != NULL)
762
0
        return pctx->op.sig.signature->get_ctx_md_params(pctx->op.sig.algctx,
763
0
            params);
764
765
158k
    if (ctx->digest != NULL && ctx->digest->get_ctx_params != NULL)
766
158k
        return ctx->digest->get_ctx_params(ctx->algctx, params);
767
768
0
    return 0;
769
158k
}
770
771
const OSSL_PARAM *EVP_MD_gettable_ctx_params(const EVP_MD *md)
772
0
{
773
0
    void *provctx;
774
775
0
    if (md != NULL && md->gettable_ctx_params != NULL) {
776
0
        provctx = ossl_provider_ctx(EVP_MD_get0_provider(md));
777
0
        return md->gettable_ctx_params(NULL, provctx);
778
0
    }
779
0
    return NULL;
780
0
}
781
782
const OSSL_PARAM *EVP_MD_CTX_gettable_params(EVP_MD_CTX *ctx)
783
283M
{
784
283M
    EVP_PKEY_CTX *pctx;
785
283M
    void *provctx;
786
787
283M
    if (ctx == NULL)
788
0
        return NULL;
789
790
    /* If we have a pctx then we should try that first */
791
283M
    pctx = ctx->pctx;
792
283M
    if (pctx != NULL
793
455k
        && (pctx->operation == EVP_PKEY_OP_VERIFYCTX
794
455k
            || pctx->operation == EVP_PKEY_OP_SIGNCTX)
795
455k
        && pctx->op.sig.algctx != NULL
796
455k
        && pctx->op.sig.signature->gettable_ctx_md_params != NULL)
797
0
        return pctx->op.sig.signature->gettable_ctx_md_params(
798
0
            pctx->op.sig.algctx);
799
800
283M
    if (ctx->digest != NULL && ctx->digest->gettable_ctx_params != NULL) {
801
102k
        provctx = ossl_provider_ctx(EVP_MD_get0_provider(ctx->digest));
802
102k
        return ctx->digest->gettable_ctx_params(ctx->algctx, provctx);
803
102k
    }
804
283M
    return NULL;
805
283M
}
806
807
int EVP_MD_CTX_ctrl(EVP_MD_CTX *ctx, int cmd, int p1, void *p2)
808
0
{
809
0
    int ret = EVP_CTRL_RET_UNSUPPORTED;
810
0
    int set_params = 1;
811
0
    size_t sz;
812
0
    OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
813
814
0
    if (ctx == NULL) {
815
0
        ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
816
0
        return 0;
817
0
    }
818
819
0
    if (ctx->digest != NULL && ctx->digest->prov == NULL)
820
0
        goto legacy;
821
822
0
    switch (cmd) {
823
0
    case EVP_MD_CTRL_XOF_LEN:
824
0
        sz = (size_t)p1;
825
0
        params[0] = OSSL_PARAM_construct_size_t(OSSL_DIGEST_PARAM_XOFLEN, &sz);
826
0
        break;
827
0
    case EVP_MD_CTRL_MICALG:
828
0
        set_params = 0;
829
0
        params[0] = OSSL_PARAM_construct_utf8_string(OSSL_DIGEST_PARAM_MICALG,
830
0
            p2, p1 ? p1 : 9999);
831
0
        break;
832
0
    case EVP_CTRL_SSL3_MASTER_SECRET:
833
0
        params[0] = OSSL_PARAM_construct_octet_string(OSSL_DIGEST_PARAM_SSL3_MS,
834
0
            p2, p1);
835
0
        break;
836
0
    default:
837
0
        goto conclude;
838
0
    }
839
840
0
    if (set_params)
841
0
        ret = EVP_MD_CTX_set_params(ctx, params);
842
0
    else
843
0
        ret = EVP_MD_CTX_get_params(ctx, params);
844
0
    goto conclude;
845
846
    /* Code below to be removed when legacy support is dropped. */
847
0
legacy:
848
0
    if (ctx->digest->md_ctrl == NULL) {
849
0
        ERR_raise(ERR_LIB_EVP, EVP_R_CTRL_NOT_IMPLEMENTED);
850
0
        return 0;
851
0
    }
852
853
0
    ret = ctx->digest->md_ctrl(ctx, cmd, p1, p2);
854
0
conclude:
855
0
    if (ret <= 0)
856
0
        return 0;
857
0
    return ret;
858
0
}
859
860
EVP_MD *evp_md_new(void)
861
154
{
862
154
    EVP_MD *md = OPENSSL_zalloc(sizeof(*md));
863
864
154
    if (md != NULL) {
865
154
        md->lock = CRYPTO_THREAD_lock_new();
866
154
        if (md->lock == NULL) {
867
0
            OPENSSL_free(md);
868
0
            return NULL;
869
0
        }
870
154
        md->refcnt = 1;
871
154
    }
872
154
    return md;
873
154
}
874
875
/*
876
 * FIPS module note: since internal fetches will be entirely
877
 * provider based, we know that none of its code depends on legacy
878
 * NIDs or any functionality that use them.
879
 */
880
#ifndef FIPS_MODULE
881
static void set_legacy_nid(const char *name, void *vlegacy_nid)
882
6.41k
{
883
6.41k
    int nid;
884
6.41k
    int *legacy_nid = vlegacy_nid;
885
    /*
886
     * We use lowest level function to get the associated method, because
887
     * higher level functions such as EVP_get_digestbyname() have changed
888
     * to look at providers too.
889
     */
890
6.41k
    const void *legacy_method = OBJ_NAME_get(name, OBJ_NAME_TYPE_MD_METH);
891
892
6.41k
    if (*legacy_nid == -1) /* We found a clash already */
893
0
        return;
894
895
6.41k
    if (legacy_method == NULL)
896
4.31k
        return;
897
2.09k
    nid = EVP_MD_nid(legacy_method);
898
2.09k
    if (*legacy_nid != NID_undef && *legacy_nid != nid) {
899
0
        *legacy_nid = -1;
900
0
        return;
901
0
    }
902
2.09k
    *legacy_nid = nid;
903
2.09k
}
904
#endif
905
906
static int evp_md_cache_constants(EVP_MD *md)
907
2.42k
{
908
2.42k
    int ok, xof = 0, algid_absent = 0;
909
2.42k
    size_t blksz = 0;
910
2.42k
    size_t mdsize = 0;
911
2.42k
    OSSL_PARAM params[5];
912
913
2.42k
    params[0] = OSSL_PARAM_construct_size_t(OSSL_DIGEST_PARAM_BLOCK_SIZE, &blksz);
914
2.42k
    params[1] = OSSL_PARAM_construct_size_t(OSSL_DIGEST_PARAM_SIZE, &mdsize);
915
2.42k
    params[2] = OSSL_PARAM_construct_int(OSSL_DIGEST_PARAM_XOF, &xof);
916
2.42k
    params[3] = OSSL_PARAM_construct_int(OSSL_DIGEST_PARAM_ALGID_ABSENT,
917
2.42k
        &algid_absent);
918
2.42k
    params[4] = OSSL_PARAM_construct_end();
919
2.42k
    ok = evp_do_md_getparams(md, params) > 0;
920
2.42k
    if (mdsize > INT_MAX || blksz > INT_MAX)
921
0
        ok = 0;
922
2.42k
    if (ok) {
923
2.42k
        md->block_size = (int)blksz;
924
2.42k
        md->md_size = (int)mdsize;
925
2.42k
        if (xof)
926
364
            md->flags |= EVP_MD_FLAG_XOF;
927
2.42k
        if (algid_absent)
928
1.60k
            md->flags |= EVP_MD_FLAG_DIGALGID_ABSENT;
929
2.42k
    }
930
2.42k
    return ok;
931
2.42k
}
932
933
static void *evp_md_from_algorithm(int name_id,
934
    const OSSL_ALGORITHM *algodef,
935
    OSSL_PROVIDER *prov)
936
154
{
937
154
    const OSSL_DISPATCH *fns = algodef->implementation;
938
154
    EVP_MD *md = NULL;
939
154
    int fncnt = 0;
940
941
    /* EVP_MD_fetch() will set the legacy NID if available */
942
154
    if ((md = evp_md_new()) == NULL) {
943
0
        ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
944
0
        return NULL;
945
0
    }
946
947
154
#ifndef FIPS_MODULE
948
154
    md->type = NID_undef;
949
154
    if (!evp_names_do_all(prov, name_id, set_legacy_nid, &md->type)
950
154
        || md->type == -1) {
951
0
        ERR_raise(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR);
952
0
        EVP_MD_free(md);
953
0
        return NULL;
954
0
    }
955
154
#endif
956
957
154
    md->name_id = name_id;
958
154
    if ((md->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) {
959
0
        EVP_MD_free(md);
960
0
        return NULL;
961
0
    }
962
154
    md->description = algodef->algorithm_description;
963
964
1.47k
    for (; fns->function_id != 0; fns++) {
965
1.31k
        switch (fns->function_id) {
966
154
        case OSSL_FUNC_DIGEST_NEWCTX:
967
154
            if (md->newctx == NULL) {
968
154
                md->newctx = OSSL_FUNC_digest_newctx(fns);
969
154
                fncnt++;
970
154
            }
971
154
            break;
972
154
        case OSSL_FUNC_DIGEST_INIT:
973
154
            if (md->dinit == NULL) {
974
154
                md->dinit = OSSL_FUNC_digest_init(fns);
975
154
                fncnt++;
976
154
            }
977
154
            break;
978
154
        case OSSL_FUNC_DIGEST_UPDATE:
979
154
            if (md->dupdate == NULL) {
980
154
                md->dupdate = OSSL_FUNC_digest_update(fns);
981
154
                fncnt++;
982
154
            }
983
154
            break;
984
154
        case OSSL_FUNC_DIGEST_FINAL:
985
154
            if (md->dfinal == NULL) {
986
154
                md->dfinal = OSSL_FUNC_digest_final(fns);
987
154
                fncnt++;
988
154
            }
989
154
            break;
990
0
        case OSSL_FUNC_DIGEST_DIGEST:
991
0
            if (md->digest == NULL)
992
0
                md->digest = OSSL_FUNC_digest_digest(fns);
993
            /* We don't increment fnct for this as it is stand alone */
994
0
            break;
995
154
        case OSSL_FUNC_DIGEST_FREECTX:
996
154
            if (md->freectx == NULL) {
997
154
                md->freectx = OSSL_FUNC_digest_freectx(fns);
998
154
                fncnt++;
999
154
            }
1000
154
            break;
1001
154
        case OSSL_FUNC_DIGEST_DUPCTX:
1002
154
            if (md->dupctx == NULL)
1003
154
                md->dupctx = OSSL_FUNC_digest_dupctx(fns);
1004
154
            break;
1005
154
        case OSSL_FUNC_DIGEST_GET_PARAMS:
1006
154
            if (md->get_params == NULL)
1007
154
                md->get_params = OSSL_FUNC_digest_get_params(fns);
1008
154
            break;
1009
42
        case OSSL_FUNC_DIGEST_SET_CTX_PARAMS:
1010
42
            if (md->set_ctx_params == NULL)
1011
42
                md->set_ctx_params = OSSL_FUNC_digest_set_ctx_params(fns);
1012
42
            break;
1013
0
        case OSSL_FUNC_DIGEST_GET_CTX_PARAMS:
1014
0
            if (md->get_ctx_params == NULL)
1015
0
                md->get_ctx_params = OSSL_FUNC_digest_get_ctx_params(fns);
1016
0
            break;
1017
154
        case OSSL_FUNC_DIGEST_GETTABLE_PARAMS:
1018
154
            if (md->gettable_params == NULL)
1019
154
                md->gettable_params = OSSL_FUNC_digest_gettable_params(fns);
1020
154
            break;
1021
42
        case OSSL_FUNC_DIGEST_SETTABLE_CTX_PARAMS:
1022
42
            if (md->settable_ctx_params == NULL)
1023
42
                md->settable_ctx_params = OSSL_FUNC_digest_settable_ctx_params(fns);
1024
42
            break;
1025
0
        case OSSL_FUNC_DIGEST_GETTABLE_CTX_PARAMS:
1026
0
            if (md->gettable_ctx_params == NULL)
1027
0
                md->gettable_ctx_params = OSSL_FUNC_digest_gettable_ctx_params(fns);
1028
0
            break;
1029
1.31k
        }
1030
1.31k
    }
1031
154
    if ((fncnt != 0 && fncnt != 5)
1032
154
        || (fncnt == 0 && md->digest == NULL)) {
1033
        /*
1034
         * In order to be a consistent set of functions we either need the
1035
         * whole set of init/update/final etc functions or none of them.
1036
         * The "digest" function can standalone. We at least need one way to
1037
         * generate digests.
1038
         */
1039
0
        EVP_MD_free(md);
1040
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_PROVIDER_FUNCTIONS);
1041
0
        return NULL;
1042
0
    }
1043
154
    md->prov = prov;
1044
154
    if (prov != NULL)
1045
154
        ossl_provider_up_ref(prov);
1046
1047
154
    if (!evp_md_cache_constants(md)) {
1048
0
        EVP_MD_free(md);
1049
0
        ERR_raise(ERR_LIB_EVP, EVP_R_CACHE_CONSTANTS_FAILED);
1050
0
        md = NULL;
1051
0
    }
1052
1053
154
    return md;
1054
154
}
1055
1056
static int evp_md_up_ref(void *md)
1057
4.48M
{
1058
4.48M
    return EVP_MD_up_ref(md);
1059
4.48M
}
1060
1061
static void evp_md_free(void *md)
1062
7.17k
{
1063
7.17k
    EVP_MD_free(md);
1064
7.17k
}
1065
1066
EVP_MD *EVP_MD_fetch(OSSL_LIB_CTX *ctx, const char *algorithm,
1067
    const char *properties)
1068
5.63M
{
1069
5.63M
    EVP_MD *md = evp_generic_fetch(ctx, OSSL_OP_DIGEST, algorithm, properties,
1070
5.63M
        evp_md_from_algorithm, evp_md_up_ref, evp_md_free);
1071
1072
5.63M
    return md;
1073
5.63M
}
1074
1075
int EVP_MD_up_ref(EVP_MD *md)
1076
16.9M
{
1077
16.9M
    int ref = 0;
1078
1079
16.9M
    if (md->origin == EVP_ORIG_DYNAMIC)
1080
16.9M
        CRYPTO_UP_REF(&md->refcnt, &ref, md->lock);
1081
16.9M
    return 1;
1082
16.9M
}
1083
1084
void EVP_MD_free(EVP_MD *md)
1085
33.1M
{
1086
33.1M
    int i;
1087
1088
33.1M
    if (md == NULL || md->origin != EVP_ORIG_DYNAMIC)
1089
16.1M
        return;
1090
1091
16.9M
    CRYPTO_DOWN_REF(&md->refcnt, &i, md->lock);
1092
16.9M
    if (i > 0)
1093
16.9M
        return;
1094
1.74k
    evp_md_free_int(md);
1095
1.74k
}
1096
1097
void EVP_MD_do_all_provided(OSSL_LIB_CTX *libctx,
1098
    void (*fn)(EVP_MD *mac, void *arg),
1099
    void *arg)
1100
8
{
1101
8
    evp_generic_do_all(libctx, OSSL_OP_DIGEST,
1102
8
        (void (*)(void *, void *))fn, arg,
1103
8
        evp_md_from_algorithm, evp_md_up_ref, evp_md_free);
1104
8
}