Coverage Report

Created: 2026-04-09 06:50

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-2026 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
837M
{
30
837M
    if (ctx->digest != NULL) {
31
819M
        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
819M
        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
819M
    }
41
837M
}
42
43
void evp_md_ctx_clear_digest(EVP_MD_CTX *ctx, int force, int keep_fetched)
44
30.7M
{
45
30.7M
    if (ctx->algctx != NULL) {
46
12.0M
        if (ctx->digest != NULL && ctx->digest->freectx != NULL)
47
12.0M
            ctx->digest->freectx(ctx->algctx);
48
12.0M
        ctx->algctx = NULL;
49
12.0M
        EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_CLEANED);
50
12.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
30.7M
    cleanup_old_md_data(ctx, force);
59
30.7M
    if (force)
60
100k
        ctx->digest = NULL;
61
62
30.7M
#if !defined(FIPS_MODULE) && !defined(OPENSSL_NO_ENGINE)
63
30.7M
    ENGINE_finish(ctx->engine);
64
30.7M
    ctx->engine = NULL;
65
30.7M
#endif
66
67
    /* Non legacy code, this has to be later than the ctx->digest cleaning */
68
30.7M
    if (!keep_fetched) {
69
22.4M
        EVP_MD_free(ctx->fetched_digest);
70
22.4M
        ctx->fetched_digest = NULL;
71
22.4M
        ctx->reqdigest = NULL;
72
22.4M
    }
73
30.7M
}
74
75
static int evp_md_ctx_reset_ex(EVP_MD_CTX *ctx, int keep_fetched)
76
40.4M
{
77
40.4M
    if (ctx == NULL)
78
9.72M
        return 1;
79
80
30.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
30.6M
    if (!EVP_MD_CTX_test_flags(ctx, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX)) {
86
30.6M
        EVP_PKEY_CTX_free(ctx->pctx);
87
30.6M
        ctx->pctx = NULL;
88
30.6M
    }
89
30.6M
#endif
90
91
30.6M
    evp_md_ctx_clear_digest(ctx, 0, keep_fetched);
92
30.6M
    if (!keep_fetched)
93
22.3M
        OPENSSL_cleanse(ctx, sizeof(*ctx));
94
95
30.6M
    return 1;
96
40.4M
}
97
98
/* This call frees resources associated with the context */
99
int EVP_MD_CTX_reset(EVP_MD_CTX *ctx)
100
32.0M
{
101
32.0M
    return evp_md_ctx_reset_ex(ctx, 0);
102
32.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.4k
{
108
15.4k
    EVP_MD_CTX *ctx;
109
15.4k
    EVP_PKEY_CTX *pctx = NULL;
110
111
15.4k
    if ((ctx = EVP_MD_CTX_new()) == NULL
112
15.4k
        || (pctx = EVP_PKEY_CTX_new_from_pkey(libctx, pkey, propq)) == NULL) {
113
710
        ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE);
114
710
        goto err;
115
710
    }
116
117
14.7k
    if (id != NULL && EVP_PKEY_CTX_set1_id(pctx, id->data, id->length) <= 0)
118
0
        goto err;
119
120
14.7k
    EVP_MD_CTX_set_pkey_ctx(ctx, pctx);
121
14.7k
    return ctx;
122
123
710
err:
124
710
    EVP_PKEY_CTX_free(pctx);
125
710
    EVP_MD_CTX_free(ctx);
126
710
    return NULL;
127
14.7k
}
128
#endif
129
130
EVP_MD_CTX *EVP_MD_CTX_new(void)
131
11.7M
{
132
11.7M
    return OPENSSL_zalloc(sizeof(EVP_MD_CTX));
133
11.7M
}
134
135
void EVP_MD_CTX_free(EVP_MD_CTX *ctx)
136
14.2M
{
137
14.2M
    if (ctx == NULL)
138
2.46M
        return;
139
140
11.7M
    EVP_MD_CTX_reset(ctx);
141
11.7M
    OPENSSL_free(ctx);
142
11.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
957k
{
147
957k
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
148
957k
    ENGINE *tmpimpl = NULL;
149
957k
#endif
150
151
957k
#if !defined(FIPS_MODULE)
152
957k
    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
957k
#endif
169
170
957k
    EVP_MD_CTX_clear_flags(ctx, EVP_MD_CTX_FLAG_CLEANED);
171
172
957k
    if (ctx->algctx != NULL) {
173
830k
        if (!ossl_assert(ctx->digest != NULL)) {
174
0
            ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
175
0
            return 0;
176
0
        }
177
830k
        if (ctx->digest->freectx != NULL)
178
830k
            ctx->digest->freectx(ctx->algctx);
179
830k
        ctx->algctx = NULL;
180
830k
    }
181
182
957k
    if (type != NULL) {
183
957k
        ctx->reqdigest = type;
184
957k
    } 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
957k
#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
957k
    if (ctx->engine && ctx->digest && (type == NULL || (type->type == ctx->digest->type)))
201
0
        goto skip_to_init;
202
203
957k
    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
957k
        ENGINE_finish(ctx->engine);
210
957k
        ctx->engine = NULL;
211
957k
    }
212
213
957k
    if (type != NULL && impl == NULL)
214
957k
        tmpimpl = ENGINE_get_digest_engine(type->type);
215
957k
#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
957k
    if (ctx->engine != NULL
222
957k
        || impl != NULL
223
957k
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
224
957k
        || tmpimpl != NULL
225
957k
#endif
226
957k
        || (ctx->flags & EVP_MD_CTX_FLAG_NO_INIT) != 0
227
957k
        || (type != NULL && type->origin == EVP_ORIG_METH)
228
957k
        || (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
957k
    cleanup_old_md_data(ctx, 1);
238
239
    /* Start of non-legacy code below */
240
241
957k
    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
957k
    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
957k
    if (type->prov != NULL && ctx->fetched_digest != type) {
269
126k
        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
126k
        EVP_MD_free(ctx->fetched_digest);
274
126k
        ctx->fetched_digest = (EVP_MD *)type;
275
126k
    }
276
957k
    ctx->digest = type;
277
957k
    if (ctx->algctx == NULL) {
278
957k
        ctx->algctx = ctx->digest->newctx(ossl_provider_ctx(type->prov));
279
957k
        if (ctx->algctx == NULL) {
280
0
            ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
281
0
            return 0;
282
0
        }
283
957k
    }
284
285
957k
    if (ctx->digest->dinit == NULL) {
286
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
287
0
        return 0;
288
0
    }
289
290
957k
    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
803M
{
361
803M
    return evp_md_init_internal(ctx, type, params, NULL);
362
803M
}
363
364
int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type)
365
41
{
366
41
    EVP_MD_CTX_reset(ctx);
367
41
    return evp_md_init_internal(ctx, type, NULL, NULL);
368
41
}
369
370
int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl)
371
8.09M
{
372
8.09M
    return evp_md_init_internal(ctx, type, NULL, impl);
373
8.09M
}
374
375
int EVP_DigestUpdate(EVP_MD_CTX *ctx, const void *data, size_t count)
376
1.06M
{
377
1.06M
    if (count == 0)
378
5.63k
        return 1;
379
380
1.06M
    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.06M
    if (ctx->digest == NULL
400
1.06M
        || ctx->digest->prov == NULL
401
1.06M
        || (ctx->flags & EVP_MD_CTX_FLAG_NO_INIT) != 0)
402
0
        goto legacy;
403
404
1.06M
    if (ctx->digest->dupdate == NULL) {
405
0
        ERR_raise(ERR_LIB_EVP, EVP_R_UPDATE_ERROR);
406
0
        return 0;
407
0
    }
408
1.06M
    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.06M
}
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
231k
{
418
231k
    int ret;
419
231k
    ret = EVP_DigestFinal_ex(ctx, md, size);
420
231k
    EVP_MD_CTX_reset(ctx);
421
231k
    return ret;
422
231k
}
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
1.00M
{
427
1.00M
    int ret, sz;
428
1.00M
    size_t size = 0;
429
1.00M
    size_t mdsize = 0;
430
431
1.00M
    if (ctx->digest == NULL)
432
0
        return 0;
433
434
1.00M
    sz = EVP_MD_get_size(ctx->digest);
435
1.00M
    if (sz < 0)
436
0
        return 0;
437
1.00M
    mdsize = sz;
438
1.00M
    if (ctx->digest->prov == NULL)
439
0
        goto legacy;
440
441
1.00M
    if (ctx->digest->dfinal == NULL) {
442
0
        ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
443
0
        return 0;
444
0
    }
445
446
1.00M
    ret = ctx->digest->dfinal(ctx->algctx, md, &size, mdsize);
447
448
1.00M
    if (isize != NULL) {
449
915k
        if (size <= UINT_MAX) {
450
915k
            *isize = (unsigned int)size;
451
915k
        } else {
452
0
            ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
453
0
            ret = 0;
454
0
        }
455
915k
    }
456
457
1.00M
    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
1.00M
}
472
473
int EVP_DigestFinalXOF(EVP_MD_CTX *ctx, unsigned char *md, size_t size)
474
45
{
475
45
    int ret = 0;
476
45
    OSSL_PARAM params[2];
477
45
    size_t i = 0;
478
479
45
    if (ctx->digest == NULL) {
480
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_NULL_ALGORITHM);
481
0
        return 0;
482
0
    }
483
484
45
    if (ctx->digest->prov == NULL)
485
0
        goto legacy;
486
487
45
    if (ctx->digest->dfinal == NULL) {
488
0
        ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
489
0
        return 0;
490
0
    }
491
492
45
    params[i++] = OSSL_PARAM_construct_size_t(OSSL_DIGEST_PARAM_XOFLEN, &size);
493
45
    params[i++] = OSSL_PARAM_construct_end();
494
495
45
    if (EVP_MD_CTX_set_params(ctx, params) > 0)
496
45
        ret = ctx->digest->dfinal(ctx->algctx, md, &size, size);
497
498
45
    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
45
}
516
517
int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in)
518
581k
{
519
581k
    EVP_MD_CTX_reset(out);
520
581k
    return EVP_MD_CTX_copy_ex(out, in);
521
581k
}
522
523
int EVP_MD_CTX_copy_ex(EVP_MD_CTX *out, const EVP_MD_CTX *in)
524
3.91M
{
525
3.91M
    int digest_change = 0;
526
3.91M
    unsigned char *tmp_buf;
527
528
3.91M
    if (in == NULL) {
529
0
        ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
530
0
        return 0;
531
0
    }
532
533
3.91M
    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.91M
    if (in->digest->prov == NULL
543
3.91M
        || (in->flags & EVP_MD_CTX_FLAG_NO_INIT) != 0)
544
0
        goto legacy;
545
546
3.91M
    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.91M
    evp_md_ctx_reset_ex(out, 1);
552
3.91M
    digest_change = (out->fetched_digest != in->fetched_digest);
553
3.91M
    if (digest_change && out->fetched_digest != NULL)
554
0
        EVP_MD_free(out->fetched_digest);
555
3.91M
    *out = *in;
556
    /* NULL out pointers in case of error */
557
3.91M
    out->pctx = NULL;
558
3.91M
    out->algctx = NULL;
559
560
3.91M
    if (digest_change && in->fetched_digest != NULL)
561
2.93M
        EVP_MD_up_ref(in->fetched_digest);
562
563
3.91M
    if (in->algctx != NULL) {
564
3.70M
        out->algctx = in->digest->dupctx(in->algctx);
565
3.70M
        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.70M
    }
570
571
3.91M
clone_pkey:
572
    /* copied EVP_MD_CTX should free the copied EVP_PKEY_CTX */
573
3.91M
    EVP_MD_CTX_clear_flags(out, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX);
574
3.91M
#ifndef FIPS_MODULE
575
3.91M
    if (in->pctx != NULL) {
576
208k
        out->pctx = EVP_PKEY_CTX_dup(in->pctx);
577
208k
        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
208k
    }
583
3.91M
#endif
584
585
3.91M
    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
363k
{
650
363k
    EVP_MD_CTX *ctx = EVP_MD_CTX_new();
651
363k
    int ret;
652
653
363k
    if (ctx == NULL)
654
0
        return 0;
655
363k
    EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_ONESHOT);
656
363k
    ret = EVP_DigestInit_ex(ctx, type, impl)
657
363k
        && EVP_DigestUpdate(ctx, data, count)
658
363k
        && EVP_DigestFinal_ex(ctx, md, size);
659
363k
    EVP_MD_CTX_free(ctx);
660
661
363k
    return ret;
662
363k
}
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
154M
{
698
154M
    EVP_PKEY_CTX *pctx = ctx->pctx;
699
700
    /* If we have a pctx then we should try that first */
701
154M
    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
154M
    if (ctx->digest != NULL && ctx->digest->set_ctx_params != NULL)
710
154M
        return ctx->digest->set_ctx_params(ctx->algctx, params);
711
712
35
    return 0;
713
154M
}
714
715
const OSSL_PARAM *EVP_MD_settable_ctx_params(const EVP_MD *md)
716
147
{
717
147
    void *provctx;
718
719
147
    if (md != NULL && md->settable_ctx_params != NULL) {
720
120
        provctx = ossl_provider_ctx(EVP_MD_get0_provider(md));
721
120
        return md->settable_ctx_params(NULL, provctx);
722
120
    }
723
27
    return NULL;
724
147
}
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
198k
{
754
198k
    EVP_PKEY_CTX *pctx = ctx->pctx;
755
756
    /* If we have a pctx then we should try that first */
757
198k
    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
198k
    if (ctx->digest != NULL && ctx->digest->get_ctx_params != NULL)
766
198k
        return ctx->digest->get_ctx_params(ctx->algctx, params);
767
768
0
    return 0;
769
198k
}
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
276M
{
784
276M
    EVP_PKEY_CTX *pctx;
785
276M
    void *provctx;
786
787
276M
    if (ctx == NULL)
788
0
        return NULL;
789
790
    /* If we have a pctx then we should try that first */
791
276M
    pctx = ctx->pctx;
792
276M
    if (pctx != NULL
793
612k
        && (pctx->operation == EVP_PKEY_OP_VERIFYCTX
794
612k
            || pctx->operation == EVP_PKEY_OP_SIGNCTX)
795
612k
        && pctx->op.sig.signature != NULL
796
612k
        && pctx->op.sig.signature->gettable_ctx_md_params != NULL
797
0
        && pctx->op.sig.algctx != NULL)
798
0
        return pctx->op.sig.signature->gettable_ctx_md_params(
799
0
            pctx->op.sig.algctx);
800
801
276M
    if (ctx->digest != NULL && ctx->digest->gettable_ctx_params != NULL) {
802
95.9k
        provctx = ossl_provider_ctx(EVP_MD_get0_provider(ctx->digest));
803
95.9k
        return ctx->digest->gettable_ctx_params(ctx->algctx, provctx);
804
95.9k
    }
805
276M
    return NULL;
806
276M
}
807
808
int EVP_MD_CTX_ctrl(EVP_MD_CTX *ctx, int cmd, int p1, void *p2)
809
0
{
810
0
    int ret = EVP_CTRL_RET_UNSUPPORTED;
811
0
    int set_params = 1;
812
0
    size_t sz;
813
0
    OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
814
815
0
    if (ctx == NULL) {
816
0
        ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
817
0
        return 0;
818
0
    }
819
820
0
    if (ctx->digest != NULL && ctx->digest->prov == NULL)
821
0
        goto legacy;
822
823
0
    switch (cmd) {
824
0
    case EVP_MD_CTRL_XOF_LEN:
825
0
        sz = (size_t)p1;
826
0
        params[0] = OSSL_PARAM_construct_size_t(OSSL_DIGEST_PARAM_XOFLEN, &sz);
827
0
        break;
828
0
    case EVP_MD_CTRL_MICALG:
829
0
        set_params = 0;
830
0
        params[0] = OSSL_PARAM_construct_utf8_string(OSSL_DIGEST_PARAM_MICALG,
831
0
            p2, p1 ? p1 : 9999);
832
0
        break;
833
0
    case EVP_CTRL_SSL3_MASTER_SECRET:
834
0
        params[0] = OSSL_PARAM_construct_octet_string(OSSL_DIGEST_PARAM_SSL3_MS,
835
0
            p2, p1);
836
0
        break;
837
0
    default:
838
0
        goto conclude;
839
0
    }
840
841
0
    if (set_params)
842
0
        ret = EVP_MD_CTX_set_params(ctx, params);
843
0
    else
844
0
        ret = EVP_MD_CTX_get_params(ctx, params);
845
0
    goto conclude;
846
847
    /* Code below to be removed when legacy support is dropped. */
848
0
legacy:
849
0
    if (ctx->digest->md_ctrl == NULL) {
850
0
        ERR_raise(ERR_LIB_EVP, EVP_R_CTRL_NOT_IMPLEMENTED);
851
0
        return 0;
852
0
    }
853
854
0
    ret = ctx->digest->md_ctrl(ctx, cmd, p1, p2);
855
0
conclude:
856
0
    if (ret <= 0)
857
0
        return 0;
858
0
    return ret;
859
0
}
860
861
EVP_MD *evp_md_new(void)
862
154
{
863
154
    EVP_MD *md = OPENSSL_zalloc(sizeof(*md));
864
865
154
    if (md != NULL) {
866
154
        md->lock = CRYPTO_THREAD_lock_new();
867
154
        if (md->lock == NULL) {
868
0
            OPENSSL_free(md);
869
0
            return NULL;
870
0
        }
871
154
        md->refcnt = 1;
872
154
    }
873
154
    return md;
874
154
}
875
876
/*
877
 * FIPS module note: since internal fetches will be entirely
878
 * provider based, we know that none of its code depends on legacy
879
 * NIDs or any functionality that use them.
880
 */
881
#ifndef FIPS_MODULE
882
static void set_legacy_nid(const char *name, void *vlegacy_nid)
883
6.54k
{
884
6.54k
    int nid;
885
6.54k
    int *legacy_nid = vlegacy_nid;
886
    /*
887
     * We use lowest level function to get the associated method, because
888
     * higher level functions such as EVP_get_digestbyname() have changed
889
     * to look at providers too.
890
     */
891
6.54k
    const void *legacy_method = OBJ_NAME_get(name, OBJ_NAME_TYPE_MD_METH);
892
893
6.54k
    if (*legacy_nid == -1) /* We found a clash already */
894
0
        return;
895
896
6.54k
    if (legacy_method == NULL)
897
4.45k
        return;
898
2.09k
    nid = EVP_MD_nid(legacy_method);
899
2.09k
    if (*legacy_nid != NID_undef && *legacy_nid != nid) {
900
0
        *legacy_nid = -1;
901
0
        return;
902
0
    }
903
2.09k
    *legacy_nid = nid;
904
2.09k
}
905
#endif
906
907
static int evp_md_cache_constants(EVP_MD *md)
908
2.47k
{
909
2.47k
    int ok, xof = 0, algid_absent = 0;
910
2.47k
    size_t blksz = 0;
911
2.47k
    size_t mdsize = 0;
912
2.47k
    OSSL_PARAM params[5];
913
914
2.47k
    params[0] = OSSL_PARAM_construct_size_t(OSSL_DIGEST_PARAM_BLOCK_SIZE, &blksz);
915
2.47k
    params[1] = OSSL_PARAM_construct_size_t(OSSL_DIGEST_PARAM_SIZE, &mdsize);
916
2.47k
    params[2] = OSSL_PARAM_construct_int(OSSL_DIGEST_PARAM_XOF, &xof);
917
2.47k
    params[3] = OSSL_PARAM_construct_int(OSSL_DIGEST_PARAM_ALGID_ABSENT,
918
2.47k
        &algid_absent);
919
2.47k
    params[4] = OSSL_PARAM_construct_end();
920
2.47k
    ok = evp_do_md_getparams(md, params) > 0;
921
2.47k
    if (mdsize > INT_MAX || blksz > INT_MAX)
922
0
        ok = 0;
923
2.47k
    if (ok) {
924
2.47k
        md->block_size = (int)blksz;
925
2.47k
        md->md_size = (int)mdsize;
926
2.47k
        if (xof)
927
402
            md->flags |= EVP_MD_FLAG_XOF;
928
2.47k
        if (algid_absent)
929
1.66k
            md->flags |= EVP_MD_FLAG_DIGALGID_ABSENT;
930
2.47k
    }
931
2.47k
    return ok;
932
2.47k
}
933
934
static void *evp_md_from_algorithm(int name_id,
935
    const OSSL_ALGORITHM *algodef,
936
    OSSL_PROVIDER *prov)
937
154
{
938
154
    const OSSL_DISPATCH *fns = algodef->implementation;
939
154
    EVP_MD *md = NULL;
940
154
    int fncnt = 0;
941
942
    /* EVP_MD_fetch() will set the legacy NID if available */
943
154
    if ((md = evp_md_new()) == NULL) {
944
0
        ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
945
0
        return NULL;
946
0
    }
947
948
154
#ifndef FIPS_MODULE
949
154
    md->type = NID_undef;
950
154
    if (!evp_names_do_all(prov, name_id, set_legacy_nid, &md->type)
951
154
        || md->type == -1) {
952
0
        ERR_raise(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR);
953
0
        EVP_MD_free(md);
954
0
        return NULL;
955
0
    }
956
154
#endif
957
958
154
    md->name_id = name_id;
959
154
    if ((md->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) {
960
0
        EVP_MD_free(md);
961
0
        return NULL;
962
0
    }
963
154
    md->description = algodef->algorithm_description;
964
965
1.47k
    for (; fns->function_id != 0; fns++) {
966
1.31k
        switch (fns->function_id) {
967
154
        case OSSL_FUNC_DIGEST_NEWCTX:
968
154
            if (md->newctx == NULL) {
969
154
                md->newctx = OSSL_FUNC_digest_newctx(fns);
970
154
                fncnt++;
971
154
            }
972
154
            break;
973
154
        case OSSL_FUNC_DIGEST_INIT:
974
154
            if (md->dinit == NULL) {
975
154
                md->dinit = OSSL_FUNC_digest_init(fns);
976
154
                fncnt++;
977
154
            }
978
154
            break;
979
154
        case OSSL_FUNC_DIGEST_UPDATE:
980
154
            if (md->dupdate == NULL) {
981
154
                md->dupdate = OSSL_FUNC_digest_update(fns);
982
154
                fncnt++;
983
154
            }
984
154
            break;
985
154
        case OSSL_FUNC_DIGEST_FINAL:
986
154
            if (md->dfinal == NULL) {
987
154
                md->dfinal = OSSL_FUNC_digest_final(fns);
988
154
                fncnt++;
989
154
            }
990
154
            break;
991
0
        case OSSL_FUNC_DIGEST_DIGEST:
992
0
            if (md->digest == NULL)
993
0
                md->digest = OSSL_FUNC_digest_digest(fns);
994
            /* We don't increment fnct for this as it is stand alone */
995
0
            break;
996
154
        case OSSL_FUNC_DIGEST_FREECTX:
997
154
            if (md->freectx == NULL) {
998
154
                md->freectx = OSSL_FUNC_digest_freectx(fns);
999
154
                fncnt++;
1000
154
            }
1001
154
            break;
1002
154
        case OSSL_FUNC_DIGEST_DUPCTX:
1003
154
            if (md->dupctx == NULL)
1004
154
                md->dupctx = OSSL_FUNC_digest_dupctx(fns);
1005
154
            break;
1006
154
        case OSSL_FUNC_DIGEST_GET_PARAMS:
1007
154
            if (md->get_params == NULL)
1008
154
                md->get_params = OSSL_FUNC_digest_get_params(fns);
1009
154
            break;
1010
42
        case OSSL_FUNC_DIGEST_SET_CTX_PARAMS:
1011
42
            if (md->set_ctx_params == NULL)
1012
42
                md->set_ctx_params = OSSL_FUNC_digest_set_ctx_params(fns);
1013
42
            break;
1014
0
        case OSSL_FUNC_DIGEST_GET_CTX_PARAMS:
1015
0
            if (md->get_ctx_params == NULL)
1016
0
                md->get_ctx_params = OSSL_FUNC_digest_get_ctx_params(fns);
1017
0
            break;
1018
154
        case OSSL_FUNC_DIGEST_GETTABLE_PARAMS:
1019
154
            if (md->gettable_params == NULL)
1020
154
                md->gettable_params = OSSL_FUNC_digest_gettable_params(fns);
1021
154
            break;
1022
42
        case OSSL_FUNC_DIGEST_SETTABLE_CTX_PARAMS:
1023
42
            if (md->settable_ctx_params == NULL)
1024
42
                md->settable_ctx_params = OSSL_FUNC_digest_settable_ctx_params(fns);
1025
42
            break;
1026
0
        case OSSL_FUNC_DIGEST_GETTABLE_CTX_PARAMS:
1027
0
            if (md->gettable_ctx_params == NULL)
1028
0
                md->gettable_ctx_params = OSSL_FUNC_digest_gettable_ctx_params(fns);
1029
0
            break;
1030
1.31k
        }
1031
1.31k
    }
1032
154
    if ((fncnt != 0 && fncnt != 5)
1033
154
        || (fncnt == 0 && md->digest == NULL)) {
1034
        /*
1035
         * In order to be a consistent set of functions we either need the
1036
         * whole set of init/update/final etc functions or none of them.
1037
         * The "digest" function can standalone. We at least need one way to
1038
         * generate digests.
1039
         */
1040
0
        EVP_MD_free(md);
1041
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_PROVIDER_FUNCTIONS);
1042
0
        return NULL;
1043
0
    }
1044
154
    md->prov = prov;
1045
154
    if (prov != NULL)
1046
154
        ossl_provider_up_ref(prov);
1047
1048
154
    if (!evp_md_cache_constants(md)) {
1049
0
        EVP_MD_free(md);
1050
0
        ERR_raise(ERR_LIB_EVP, EVP_R_CACHE_CONSTANTS_FAILED);
1051
0
        md = NULL;
1052
0
    }
1053
1054
154
    return md;
1055
154
}
1056
1057
static int evp_md_up_ref(void *md)
1058
4.62M
{
1059
4.62M
    return EVP_MD_up_ref(md);
1060
4.62M
}
1061
1062
static void evp_md_free(void *md)
1063
7.90k
{
1064
7.90k
    EVP_MD_free(md);
1065
7.90k
}
1066
1067
EVP_MD *EVP_MD_fetch(OSSL_LIB_CTX *ctx, const char *algorithm,
1068
    const char *properties)
1069
5.80M
{
1070
5.80M
    EVP_MD *md = evp_generic_fetch(ctx, OSSL_OP_DIGEST, algorithm, properties,
1071
5.80M
        evp_md_from_algorithm, evp_md_up_ref, evp_md_free);
1072
1073
5.80M
    return md;
1074
5.80M
}
1075
1076
int EVP_MD_up_ref(EVP_MD *md)
1077
18.4M
{
1078
18.4M
    int ref = 0;
1079
1080
18.4M
    if (md->origin == EVP_ORIG_DYNAMIC)
1081
18.4M
        CRYPTO_UP_REF(&md->refcnt, &ref, md->lock);
1082
18.4M
    return 1;
1083
18.4M
}
1084
1085
void EVP_MD_free(EVP_MD *md)
1086
35.7M
{
1087
35.7M
    int i;
1088
1089
35.7M
    if (md == NULL || md->origin != EVP_ORIG_DYNAMIC)
1090
17.3M
        return;
1091
1092
18.4M
    CRYPTO_DOWN_REF(&md->refcnt, &i, md->lock);
1093
18.4M
    if (i > 0)
1094
18.4M
        return;
1095
1.74k
    evp_md_free_int(md);
1096
1.74k
}
1097
1098
void EVP_MD_do_all_provided(OSSL_LIB_CTX *libctx,
1099
    void (*fn)(EVP_MD *mac, void *arg),
1100
    void *arg)
1101
8
{
1102
8
    evp_generic_do_all(libctx, OSSL_OP_DIGEST,
1103
8
        (void (*)(void *, void *))fn, arg,
1104
8
        evp_md_from_algorithm, evp_md_up_ref, evp_md_free);
1105
8
}