Coverage Report

Created: 2026-04-01 06:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl35/providers/implementations/include/prov/ciphercommon_aead.h
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
#ifndef OSSL_PROV_CIPHERCOMMON_AEAD_H
11
#define OSSL_PROV_CIPHERCOMMON_AEAD_H
12
#pragma once
13
14
17.6M
#define UNINITIALISED_SIZET ((size_t)-1)
15
16
#define AEAD_FLAGS (PROV_CIPHER_FLAG_AEAD | PROV_CIPHER_FLAG_CUSTOM_IV)
17
18
#define IMPLEMENT_aead_cipher(alg, lc, UCMODE, flags, kbits, blkbits, ivbits)   \
19
    static OSSL_FUNC_cipher_get_params_fn alg##_##kbits##_##lc##_get_params;    \
20
    static int alg##_##kbits##_##lc##_get_params(OSSL_PARAM params[])           \
21
1.04M
    {                                                                           \
22
1.04M
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
1.04M
            flags, kbits, blkbits, ivbits);                                     \
24
1.04M
    }                                                                           \
cipher_aes_ccm.c:aes_128_ccm_get_params
Line
Count
Source
21
246k
    {                                                                           \
22
246k
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
246k
            flags, kbits, blkbits, ivbits);                                     \
24
246k
    }                                                                           \
cipher_aes_ccm.c:aes_192_ccm_get_params
Line
Count
Source
21
66
    {                                                                           \
22
66
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
66
            flags, kbits, blkbits, ivbits);                                     \
24
66
    }                                                                           \
cipher_aes_ccm.c:aes_256_ccm_get_params
Line
Count
Source
21
246k
    {                                                                           \
22
246k
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
246k
            flags, kbits, blkbits, ivbits);                                     \
24
246k
    }                                                                           \
cipher_aes_gcm.c:aes_128_gcm_get_params
Line
Count
Source
21
123k
    {                                                                           \
22
123k
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
123k
            flags, kbits, blkbits, ivbits);                                     \
24
123k
    }                                                                           \
cipher_aes_gcm.c:aes_192_gcm_get_params
Line
Count
Source
21
66
    {                                                                           \
22
66
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
66
            flags, kbits, blkbits, ivbits);                                     \
24
66
    }                                                                           \
cipher_aes_gcm.c:aes_256_gcm_get_params
Line
Count
Source
21
123k
    {                                                                           \
22
123k
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
123k
            flags, kbits, blkbits, ivbits);                                     \
24
123k
    }                                                                           \
cipher_aria_ccm.c:aria_128_ccm_get_params
Line
Count
Source
21
66
    {                                                                           \
22
66
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
66
            flags, kbits, blkbits, ivbits);                                     \
24
66
    }                                                                           \
cipher_aria_ccm.c:aria_192_ccm_get_params
Line
Count
Source
21
66
    {                                                                           \
22
66
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
66
            flags, kbits, blkbits, ivbits);                                     \
24
66
    }                                                                           \
cipher_aria_ccm.c:aria_256_ccm_get_params
Line
Count
Source
21
66
    {                                                                           \
22
66
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
66
            flags, kbits, blkbits, ivbits);                                     \
24
66
    }                                                                           \
cipher_aria_gcm.c:aria_128_gcm_get_params
Line
Count
Source
21
123k
    {                                                                           \
22
123k
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
123k
            flags, kbits, blkbits, ivbits);                                     \
24
123k
    }                                                                           \
cipher_aria_gcm.c:aria_192_gcm_get_params
Line
Count
Source
21
66
    {                                                                           \
22
66
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
66
            flags, kbits, blkbits, ivbits);                                     \
24
66
    }                                                                           \
cipher_aria_gcm.c:aria_256_gcm_get_params
Line
Count
Source
21
123k
    {                                                                           \
22
123k
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
123k
            flags, kbits, blkbits, ivbits);                                     \
24
123k
    }                                                                           \
cipher_sm4_ccm.c:sm4_128_ccm_get_params
Line
Count
Source
21
29.1k
    {                                                                           \
22
29.1k
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
29.1k
            flags, kbits, blkbits, ivbits);                                     \
24
29.1k
    }                                                                           \
cipher_sm4_gcm.c:sm4_128_gcm_get_params
Line
Count
Source
21
29.1k
    {                                                                           \
22
29.1k
        return ossl_cipher_generic_get_params(params, EVP_CIPH_##UCMODE##_MODE, \
23
29.1k
            flags, kbits, blkbits, ivbits);                                     \
24
29.1k
    }                                                                           \
25
    static OSSL_FUNC_cipher_newctx_fn alg##kbits##lc##_newctx;                  \
26
    static void *alg##kbits##lc##_newctx(void *provctx)                         \
27
808k
    {                                                                           \
28
808k
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
808k
    }                                                                           \
cipher_aes_ccm.c:aes128ccm_newctx
Line
Count
Source
27
867
    {                                                                           \
28
867
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
867
    }                                                                           \
cipher_aes_ccm.c:aes192ccm_newctx
Line
Count
Source
27
6
    {                                                                           \
28
6
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
6
    }                                                                           \
cipher_aes_ccm.c:aes256ccm_newctx
Line
Count
Source
27
1.04k
    {                                                                           \
28
1.04k
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
1.04k
    }                                                                           \
cipher_aes_gcm.c:aes128gcm_newctx
Line
Count
Source
27
627k
    {                                                                           \
28
627k
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
627k
    }                                                                           \
cipher_aes_gcm.c:aes192gcm_newctx
Line
Count
Source
27
4
    {                                                                           \
28
4
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
4
    }                                                                           \
cipher_aes_gcm.c:aes256gcm_newctx
Line
Count
Source
27
177k
    {                                                                           \
28
177k
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
177k
    }                                                                           \
cipher_aria_ccm.c:aria128ccm_newctx
Line
Count
Source
27
6
    {                                                                           \
28
6
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
6
    }                                                                           \
cipher_aria_ccm.c:aria192ccm_newctx
Line
Count
Source
27
5
    {                                                                           \
28
5
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
5
    }                                                                           \
cipher_aria_ccm.c:aria256ccm_newctx
Line
Count
Source
27
5
    {                                                                           \
28
5
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
5
    }                                                                           \
cipher_aria_gcm.c:aria128gcm_newctx
Line
Count
Source
27
1.07k
    {                                                                           \
28
1.07k
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
1.07k
    }                                                                           \
cipher_aria_gcm.c:aria192gcm_newctx
Line
Count
Source
27
4
    {                                                                           \
28
4
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
4
    }                                                                           \
cipher_aria_gcm.c:aria256gcm_newctx
Line
Count
Source
27
1.10k
    {                                                                           \
28
1.10k
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
1.10k
    }                                                                           \
cipher_sm4_ccm.c:sm4128ccm_newctx
Line
Count
Source
27
3
    {                                                                           \
28
3
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
3
    }                                                                           \
cipher_sm4_gcm.c:sm4128gcm_newctx
Line
Count
Source
27
34
    {                                                                           \
28
34
        return alg##_##lc##_newctx(provctx, kbits);                             \
29
34
    }                                                                           \
30
    static void *alg##kbits##lc##_dupctx(void *src)                             \
31
0
    {                                                                           \
32
0
        return alg##_##lc##_dupctx(src);                                        \
33
0
    }                                                                           \
Unexecuted instantiation: cipher_aes_ccm.c:aes128ccm_dupctx
Unexecuted instantiation: cipher_aes_ccm.c:aes192ccm_dupctx
Unexecuted instantiation: cipher_aes_ccm.c:aes256ccm_dupctx
Unexecuted instantiation: cipher_aes_gcm.c:aes128gcm_dupctx
Unexecuted instantiation: cipher_aes_gcm.c:aes192gcm_dupctx
Unexecuted instantiation: cipher_aes_gcm.c:aes256gcm_dupctx
Unexecuted instantiation: cipher_aria_ccm.c:aria128ccm_dupctx
Unexecuted instantiation: cipher_aria_ccm.c:aria192ccm_dupctx
Unexecuted instantiation: cipher_aria_ccm.c:aria256ccm_dupctx
Unexecuted instantiation: cipher_aria_gcm.c:aria128gcm_dupctx
Unexecuted instantiation: cipher_aria_gcm.c:aria192gcm_dupctx
Unexecuted instantiation: cipher_aria_gcm.c:aria256gcm_dupctx
Unexecuted instantiation: cipher_sm4_ccm.c:sm4128ccm_dupctx
Unexecuted instantiation: cipher_sm4_gcm.c:sm4128gcm_dupctx
34
    const OSSL_DISPATCH ossl_##alg##kbits##lc##_functions[] = {                 \
35
        { OSSL_FUNC_CIPHER_NEWCTX, (void (*)(void))alg##kbits##lc##_newctx },   \
36
        { OSSL_FUNC_CIPHER_FREECTX, (void (*)(void))alg##_##lc##_freectx },     \
37
        { OSSL_FUNC_CIPHER_DUPCTX, (void (*)(void))alg##kbits##lc##_dupctx },   \
38
        { OSSL_FUNC_CIPHER_ENCRYPT_INIT, (void (*)(void))ossl_##lc##_einit },   \
39
        { OSSL_FUNC_CIPHER_DECRYPT_INIT, (void (*)(void))ossl_##lc##_dinit },   \
40
        { OSSL_FUNC_CIPHER_UPDATE, (void (*)(void))ossl_##lc##_stream_update }, \
41
        { OSSL_FUNC_CIPHER_FINAL, (void (*)(void))ossl_##lc##_stream_final },   \
42
        { OSSL_FUNC_CIPHER_CIPHER, (void (*)(void))ossl_##lc##_cipher },        \
43
        { OSSL_FUNC_CIPHER_GET_PARAMS,                                          \
44
            (void (*)(void))alg##_##kbits##_##lc##_get_params },                \
45
        { OSSL_FUNC_CIPHER_GET_CTX_PARAMS,                                      \
46
            (void (*)(void))ossl_##lc##_get_ctx_params },                       \
47
        { OSSL_FUNC_CIPHER_SET_CTX_PARAMS,                                      \
48
            (void (*)(void))ossl_##lc##_set_ctx_params },                       \
49
        { OSSL_FUNC_CIPHER_GETTABLE_PARAMS,                                     \
50
            (void (*)(void))ossl_cipher_generic_gettable_params },              \
51
        { OSSL_FUNC_CIPHER_GETTABLE_CTX_PARAMS,                                 \
52
            (void (*)(void))ossl_cipher_aead_gettable_ctx_params },             \
53
        { OSSL_FUNC_CIPHER_SETTABLE_CTX_PARAMS,                                 \
54
            (void (*)(void))ossl_cipher_aead_settable_ctx_params },             \
55
        OSSL_DISPATCH_END                                                       \
56
    }
57
58
#endif