Coverage Report

Created: 2025-11-16 06:40

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl35/providers/implementations/digests/sha2_prov.c
Line
Count
Source
1
/*
2
 * Copyright 2019-2023 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
/*
11
 * SHA low level APIs are deprecated for public use, but still ok for
12
 * internal use.
13
 */
14
#include "internal/deprecated.h"
15
16
#include <openssl/crypto.h>
17
#include <openssl/core_dispatch.h>
18
#include <openssl/evp.h>
19
#include <openssl/sha.h>
20
#include <openssl/params.h>
21
#include <openssl/core_names.h>
22
#include "prov/digestcommon.h"
23
#include "prov/implementations.h"
24
#include "crypto/sha.h"
25
26
#define SHA2_FLAGS PROV_DIGEST_FLAG_ALGID_ABSENT
27
28
static OSSL_FUNC_digest_set_ctx_params_fn sha1_set_ctx_params;
29
static OSSL_FUNC_digest_settable_ctx_params_fn sha1_settable_ctx_params;
30
31
static const OSSL_PARAM known_sha1_settable_ctx_params[] = {
32
    {OSSL_DIGEST_PARAM_SSL3_MS, OSSL_PARAM_OCTET_STRING, NULL, 0, 0},
33
    OSSL_PARAM_END
34
};
35
static const OSSL_PARAM *sha1_settable_ctx_params(ossl_unused void *ctx,
36
                                                  ossl_unused void *provctx)
37
4
{
38
4
    return known_sha1_settable_ctx_params;
39
4
}
40
41
/* Special set_params method for SSL3 */
42
static int sha1_set_ctx_params(void *vctx, const OSSL_PARAM params[])
43
444k
{
44
444k
    const OSSL_PARAM *p;
45
444k
    SHA_CTX *ctx = (SHA_CTX *)vctx;
46
47
444k
    if (ctx == NULL)
48
0
        return 0;
49
444k
    if (ossl_param_is_empty(params))
50
444k
        return 1;
51
52
0
    p = OSSL_PARAM_locate_const(params, OSSL_DIGEST_PARAM_SSL3_MS);
53
0
    if (p != NULL && p->data_type == OSSL_PARAM_OCTET_STRING)
54
0
        return ossl_sha1_ctrl(ctx, EVP_CTRL_SSL3_MASTER_SECRET,
55
0
                              p->data_size, p->data);
56
0
    return 1;
57
0
}
58
59
/* ossl_sha1_functions */
60
4.08M
IMPLEMENT_digest_functions_with_settable_ctx(
Unexecuted instantiation: sha2_prov.c:sha1_newctx
Unexecuted instantiation: sha2_prov.c:sha1_dupctx
61
4.08M
    sha1, SHA_CTX, SHA_CBLOCK, SHA_DIGEST_LENGTH, SHA2_FLAGS,
62
4.08M
    SHA1_Init, SHA1_Update, SHA1_Final,
63
4.08M
    sha1_settable_ctx_params, sha1_set_ctx_params)
64
4.08M
65
4.08M
/* ossl_sha224_functions */
66
4.08M
IMPLEMENT_digest_functions(sha224, SHA256_CTX,
Unexecuted instantiation: sha2_prov.c:sha224_newctx
Unexecuted instantiation: sha2_prov.c:sha224_dupctx
67
27.6k
                           SHA256_CBLOCK, SHA224_DIGEST_LENGTH, SHA2_FLAGS,
68
27.6k
                           SHA224_Init, SHA224_Update, SHA224_Final)
69
27.6k
70
27.6k
/* ossl_sha256_functions */
71
5.96M
IMPLEMENT_digest_functions(sha256, SHA256_CTX,
Unexecuted instantiation: sha2_prov.c:sha256_newctx
Unexecuted instantiation: sha2_prov.c:sha256_dupctx
72
5.96M
                           SHA256_CBLOCK, SHA256_DIGEST_LENGTH, SHA2_FLAGS,
73
5.96M
                           SHA256_Init, SHA256_Update, SHA256_Final)
74
5.96M
#ifndef FIPS_MODULE
75
5.96M
/* ossl_sha256_192_functions */
76
5.96M
IMPLEMENT_digest_functions(sha256_192, SHA256_CTX,
Unexecuted instantiation: sha2_prov.c:sha256_192_newctx
Unexecuted instantiation: sha2_prov.c:sha256_192_dupctx
77
0
                           SHA256_CBLOCK, SHA256_192_DIGEST_LENGTH, SHA2_FLAGS,
78
0
                           ossl_sha256_192_init, SHA256_Update, SHA256_Final)
79
0
#endif
80
0
/* ossl_sha384_functions */
81
4.60M
IMPLEMENT_digest_functions(sha384, SHA512_CTX,
Unexecuted instantiation: sha2_prov.c:sha384_newctx
Unexecuted instantiation: sha2_prov.c:sha384_dupctx
82
4.60M
                           SHA512_CBLOCK, SHA384_DIGEST_LENGTH, SHA2_FLAGS,
83
4.60M
                           SHA384_Init, SHA384_Update, SHA384_Final)
84
4.60M
85
4.60M
/* ossl_sha512_functions */
86
4.60M
IMPLEMENT_digest_functions(sha512, SHA512_CTX,
Unexecuted instantiation: sha2_prov.c:sha512_newctx
Unexecuted instantiation: sha2_prov.c:sha512_dupctx
87
158k
                           SHA512_CBLOCK, SHA512_DIGEST_LENGTH, SHA2_FLAGS,
88
158k
                           SHA512_Init, SHA512_Update, SHA512_Final)
89
158k
90
158k
/* ossl_sha512_224_functions */
91
158k
IMPLEMENT_digest_functions(sha512_224, SHA512_CTX,
Unexecuted instantiation: sha2_prov.c:sha512_224_newctx
Unexecuted instantiation: sha2_prov.c:sha512_224_dupctx
92
5.75k
                           SHA512_CBLOCK, SHA224_DIGEST_LENGTH, SHA2_FLAGS,
93
5.75k
                           sha512_224_init, SHA512_Update, SHA512_Final)
94
5.75k
95
5.75k
/* ossl_sha512_256_functions */
96
IMPLEMENT_digest_functions(sha512_256, SHA512_CTX,
Unexecuted instantiation: sha2_prov.c:sha512_256_newctx
Unexecuted instantiation: sha2_prov.c:sha512_256_dupctx
97
                           SHA512_CBLOCK, SHA256_DIGEST_LENGTH, SHA2_FLAGS,
98
                           sha512_256_init, SHA512_Update, SHA512_Final)