Coverage Report

Created: 2026-09-12 06:55

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl41/providers/implementations/kem/ml_kem_kem.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 ml_kem_set_ctx_params_list
21
static ossl_unused const OSSL_PARAM ml_kem_set_ctx_params_list[] = {
22
    OSSL_PARAM_octet_string(OSSL_KEM_PARAM_IKME, NULL, 0),
23
    OSSL_PARAM_END
24
};
25
#endif
26
27
#ifndef ml_kem_set_ctx_params_st
28
struct ml_kem_set_ctx_params_st {
29
    OSSL_PARAM *ikme;
30
};
31
#endif
32
33
#ifndef ml_kem_set_ctx_params_decoder
34
static ossl_unused int ml_kem_set_ctx_params_decoder
35
    (const OSSL_PARAM *p, struct ml_kem_set_ctx_params_st *r)
36
282
{
37
282
    const char *s;
38
39
282
    memset(r, 0, sizeof(*r));
40
282
    if (p != NULL)
41
0
        for (; (s = p->key) != NULL; p++)
42
0
            if (ossl_likely(strcmp("ikme", s + 0) == 0)) {
43
                /* OSSL_KEM_PARAM_IKME */
44
0
                if (ossl_unlikely(r->ikme != 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
0
                r->ikme = (OSSL_PARAM *)p;
50
0
            }
51
282
    return 1;
52
282
}
53
#endif
54
/* End of machine generated */