Coverage Report

Created: 2023-09-25 06:45

/src/openssl30/providers/implementations/ciphers/ciphercommon_ccm_hw.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2019-2021 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
#include "prov/ciphercommon.h"
11
#include "prov/ciphercommon_ccm.h"
12
13
int ossl_ccm_generic_setiv(PROV_CCM_CTX *ctx, const unsigned char *nonce,
14
                           size_t nlen, size_t mlen)
15
182
{
16
182
    return CRYPTO_ccm128_setiv(&ctx->ccm_ctx, nonce, nlen, mlen) == 0;
17
182
}
18
19
int ossl_ccm_generic_setaad(PROV_CCM_CTX *ctx, const unsigned char *aad,
20
                            size_t alen)
21
182
{
22
182
    CRYPTO_ccm128_aad(&ctx->ccm_ctx, aad, alen);
23
182
    return 1;
24
182
}
25
26
int ossl_ccm_generic_gettag(PROV_CCM_CTX *ctx, unsigned char *tag, size_t tlen)
27
0
{
28
0
    return CRYPTO_ccm128_tag(&ctx->ccm_ctx, tag, tlen) > 0;
29
0
}
30
31
int ossl_ccm_generic_auth_encrypt(PROV_CCM_CTX *ctx, const unsigned char *in,
32
                                  unsigned char *out, size_t len,
33
                                  unsigned char *tag, size_t taglen)
34
91
{
35
91
    int rv;
36
37
91
    if (ctx->str != NULL)
38
91
        rv = CRYPTO_ccm128_encrypt_ccm64(&ctx->ccm_ctx, in,
39
91
                                         out, len, ctx->str) == 0;
40
0
    else
41
0
        rv = CRYPTO_ccm128_encrypt(&ctx->ccm_ctx, in, out, len) == 0;
42
43
91
    if (rv == 1 && tag != NULL)
44
91
        rv = (CRYPTO_ccm128_tag(&ctx->ccm_ctx, tag, taglen) > 0);
45
91
    return rv;
46
91
}
47
48
int ossl_ccm_generic_auth_decrypt(PROV_CCM_CTX *ctx, const unsigned char *in,
49
                                  unsigned char *out, size_t len,
50
                                  unsigned char *expected_tag, size_t taglen)
51
91
{
52
91
    int rv = 0;
53
54
91
    if (ctx->str != NULL)
55
91
        rv = CRYPTO_ccm128_decrypt_ccm64(&ctx->ccm_ctx, in, out, len,
56
91
                                         ctx->str) == 0;
57
0
    else
58
0
        rv = CRYPTO_ccm128_decrypt(&ctx->ccm_ctx, in, out, len) == 0;
59
91
    if (rv) {
60
91
        unsigned char tag[16];
61
62
91
        if (!CRYPTO_ccm128_tag(&ctx->ccm_ctx, tag, taglen)
63
91
            || CRYPTO_memcmp(tag, expected_tag, taglen) != 0)
64
84
            rv = 0;
65
91
    }
66
91
    if (rv == 0)
67
84
        OPENSSL_cleanse(out, len);
68
91
    return rv;
69
91
}