Coverage Report

Created: 2026-09-12 06:55

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl41/providers/implementations/macs/poly1305_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 poly1305_get_params_list
21
static ossl_unused const OSSL_PARAM poly1305_get_params_list[] = {
22
    OSSL_PARAM_size_t(OSSL_MAC_PARAM_SIZE, NULL),
23
    OSSL_PARAM_END
24
};
25
#endif
26
27
#ifndef poly1305_get_params_st
28
struct poly1305_get_params_st {
29
    OSSL_PARAM *size;
30
};
31
#endif
32
33
#ifndef poly1305_get_params_decoder
34
static ossl_unused int poly1305_get_params_decoder
35
    (const OSSL_PARAM *p, struct poly1305_get_params_st *r)
36
0
{
37
0
    const char *s;
38
39
0
    memset(r, 0, sizeof(*r));
40
0
    if (p != NULL)
41
0
        for (; (s = p->key) != NULL; p++)
42
0
            if (ossl_likely(strcmp("size", s + 0) == 0)) {
43
                /* OSSL_MAC_PARAM_SIZE */
44
0
                if (ossl_unlikely(r->size != 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->size = (OSSL_PARAM *)p;
50
0
            }
51
0
    return 1;
52
0
}
53
#endif
54
/* End of machine generated */
55
56
/* Machine generated */
57
#ifndef poly1305_set_ctx_params_list
58
static ossl_unused const OSSL_PARAM poly1305_set_ctx_params_list[] = {
59
    OSSL_PARAM_octet_string(OSSL_MAC_PARAM_KEY, NULL, 0),
60
    OSSL_PARAM_END
61
};
62
#endif
63
64
#ifndef poly1305_set_ctx_params_st
65
struct poly1305_set_ctx_params_st {
66
    OSSL_PARAM *key;
67
};
68
#endif
69
70
#ifndef poly1305_set_ctx_params_decoder
71
static ossl_unused int poly1305_set_ctx_params_decoder
72
    (const OSSL_PARAM *p, struct poly1305_set_ctx_params_st *r)
73
35
{
74
35
    const char *s;
75
76
35
    memset(r, 0, sizeof(*r));
77
35
    if (p != NULL)
78
70
        for (; (s = p->key) != NULL; p++)
79
35
            if (ossl_likely(strcmp("key", s + 0) == 0)) {
80
                /* OSSL_MAC_PARAM_KEY */
81
35
                if (ossl_unlikely(r->key != NULL)) {
82
0
                    ERR_raise_data(ERR_LIB_PROV, PROV_R_REPEATED_PARAMETER,
83
0
                                   "param %s is repeated", s);
84
0
                    return 0;
85
0
                }
86
35
                r->key = (OSSL_PARAM *)p;
87
35
            }
88
35
    return 1;
89
35
}
90
#endif
91
/* End of machine generated */