Coverage Report

Created: 2026-05-24 07:14

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl36/providers/implementations/ciphers/cipher_aes.c
Line
Count
Source
1
/*
2
 * Copyright 2019-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
 * AES low level APIs are deprecated for public use, but still ok for internal
12
 * use where we're using them to implement the higher level EVP interface, as is
13
 * the case here.
14
 */
15
#include "internal/deprecated.h"
16
17
/* Dispatch functions for AES cipher modes ecb, cbc, ofb, cfb, ctr */
18
19
#include "cipher_aes.h"
20
#include "prov/implementations.h"
21
#include "prov/providercommon.h"
22
#include "cipher_aes_cfb.h"
23
24
static OSSL_FUNC_cipher_freectx_fn aes_freectx;
25
static OSSL_FUNC_cipher_dupctx_fn aes_dupctx;
26
27
static void aes_freectx(void *vctx)
28
243k
{
29
243k
    PROV_AES_CTX *ctx = (PROV_AES_CTX *)vctx;
30
31
243k
    ossl_cipher_generic_reset_ctx((PROV_CIPHER_CTX *)vctx);
32
243k
    OPENSSL_clear_free(ctx, sizeof(*ctx));
33
243k
}
34
35
static void *aes_dupctx(void *ctx)
36
267
{
37
267
    PROV_AES_CTX *in = (PROV_AES_CTX *)ctx;
38
267
    PROV_AES_CTX *ret;
39
40
267
    if (!ossl_prov_is_running())
41
0
        return NULL;
42
43
267
    ret = OPENSSL_malloc(sizeof(*ret));
44
267
    if (ret == NULL)
45
0
        return NULL;
46
267
    in->base.hw->copyctx(&ret->base, &in->base);
47
48
267
    return ret;
49
267
}
50
51
/* ossl_aes256ecb_functions */
52
116k
IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 256, 128, 0, block)
53
116k
/* ossl_aes192ecb_functions */
54
116k
IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 192, 128, 0, block)
55
4
/* ossl_aes128ecb_functions */
56
272k
IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 128, 128, 0, block)
57
272k
/* ossl_aes256cbc_functions */
58
272k
IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 256, 128, 128, block)
59
5.36k
/* ossl_aes192cbc_functions */
60
5.36k
IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 192, 128, 128, block)
61
4
/* ossl_aes128cbc_functions */
62
1.13k
IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 128, 128, 128, block)
63
1.13k
/* ossl_aes256ofb_functions */
64
1.13k
IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 256, 8, 128, stream)
65
66
/* ossl_aes192ofb_functions */
66
66
IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 192, 8, 128, stream)
67
2
/* ossl_aes128ofb_functions */
68
2
IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 128, 8, 128, stream)
69
2
/* ossl_aes256cfb_functions */
70
66
IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 256, 8, 128, stream)
71
66
/* ossl_aes192cfb_functions */
72
66
IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 192, 8, 128, stream)
73
2
/* ossl_aes128cfb_functions */
74
2
IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 128, 8, 128, stream)
75
2
/* ossl_aes256cfb1_functions */
76
130
IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 256, 8, 128, stream)
77
130
/* ossl_aes192cfb1_functions */
78
130
IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 192, 8, 128, stream)
79
2
/* ossl_aes128cfb1_functions */
80
2
IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 128, 8, 128, stream)
81
2
/* ossl_aes256cfb8_functions */
82
66
IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 256, 8, 128, stream)
83
66
/* ossl_aes192cfb8_functions */
84
66
IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 192, 8, 128, stream)
85
2
/* ossl_aes128cfb8_functions */
86
2
IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 128, 8, 128, stream)
87
2
/* ossl_aes256ctr_functions */
88
126
IMPLEMENT_generic_cipher(aes, AES, ctr, CTR, 0, 256, 8, 128, stream)
89
126
/* ossl_aes192ctr_functions */
90
126
IMPLEMENT_generic_cipher(aes, AES, ctr, CTR, 0, 192, 8, 128, stream)
91
2
/* ossl_aes128ctr_functions */
92
IMPLEMENT_generic_cipher(aes, AES, ctr, CTR, 0, 128, 8, 128, stream)
93
94
#include "cipher_aes_cts.inc"