Coverage Report

Created: 2026-09-12 06:55

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl41/providers/implementations/digests/sha2_prov.inc
Line
Count
Source
1
/*
2
 * Copyright 2025 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
12
/* Machine generated by util/perl/OpenSSL/paramnames.pm */
13
#include <string.h>
14
#include <openssl/params.h>
15
#include <openssl/e_os2.h>
16
#include "internal/common.h"
17
#include "prov/proverr.h"
18
19
/* Machine generated */
20
#ifndef sha1_set_ctx_params_list
21
static ossl_unused const OSSL_PARAM sha1_set_ctx_params_list[] = {
22
    OSSL_PARAM_octet_string(OSSL_DIGEST_PARAM_SSL3_MS, NULL, 0),
23
    OSSL_PARAM_END
24
};
25
#endif
26
27
#ifndef sha1_set_ctx_params_st
28
struct sha1_set_ctx_params_st {
29
    OSSL_PARAM *ssl3_ms;
30
};
31
#endif
32
33
#ifndef sha1_set_ctx_params_decoder
34
static ossl_unused int sha1_set_ctx_params_decoder
35
    (const OSSL_PARAM *p, struct sha1_set_ctx_params_st *r)
36
191k
{
37
191k
    const char *s;
38
39
191k
    memset(r, 0, sizeof(*r));
40
191k
    if (p != NULL)
41
8
        for (; (s = p->key) != NULL; p++)
42
4
            if (ossl_likely(strcmp("ssl3-ms", s + 0) == 0)) {
43
                /* OSSL_DIGEST_PARAM_SSL3_MS */
44
4
                if (ossl_unlikely(r->ssl3_ms != NULL)) {
45
0
                    ERR_raise_data(ERR_LIB_PROV, PROV_R_REPEATED_PARAMETER,
46
0
                                   "param %s is repeated", s);
47
0
                    return 0;
48
0
                }
49
4
                r->ssl3_ms = (OSSL_PARAM *)p;
50
4
            }
51
191k
    return 1;
52
191k
}
53
#endif
54
/* End of machine generated */