Coverage Report

Created: 2025-08-11 07:04

/src/openssl33/providers/implementations/ciphers/ciphercommon_gcm_hw.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2001-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_gcm.h"
12
13
14
int ossl_gcm_setiv(PROV_GCM_CTX *ctx, const unsigned char *iv, size_t ivlen)
15
2.28M
{
16
2.28M
    CRYPTO_gcm128_setiv(&ctx->gcm, iv, ivlen);
17
2.28M
    return 1;
18
2.28M
}
19
20
int ossl_gcm_aad_update(PROV_GCM_CTX *ctx, const unsigned char *aad,
21
                        size_t aad_len)
22
2.47M
{
23
2.47M
    return CRYPTO_gcm128_aad(&ctx->gcm, aad, aad_len) == 0;
24
2.47M
}
25
26
int ossl_gcm_cipher_update(PROV_GCM_CTX *ctx, const unsigned char *in,
27
                           size_t len, unsigned char *out)
28
22.5k
{
29
22.5k
    if (ctx->enc) {
30
628
        if (CRYPTO_gcm128_encrypt(&ctx->gcm, in, out, len))
31
0
            return 0;
32
21.8k
    } else {
33
21.8k
        if (CRYPTO_gcm128_decrypt(&ctx->gcm, in, out, len))
34
0
            return 0;
35
21.8k
    }
36
22.5k
    return 1;
37
22.5k
}
38
39
int ossl_gcm_cipher_final(PROV_GCM_CTX *ctx, unsigned char *tag)
40
2.28M
{
41
2.28M
    if (ctx->enc) {
42
1.46M
        CRYPTO_gcm128_tag(&ctx->gcm, tag, GCM_TAG_MAX_SIZE);
43
1.46M
        ctx->taglen = GCM_TAG_MAX_SIZE;
44
1.46M
    } else {
45
818k
        if (CRYPTO_gcm128_finish(&ctx->gcm, tag, ctx->taglen) != 0)
46
815k
            return 0;
47
818k
    }
48
1.47M
    return 1;
49
2.28M
}
50
51
int ossl_gcm_one_shot(PROV_GCM_CTX *ctx, unsigned char *aad, size_t aad_len,
52
                      const unsigned char *in, size_t in_len,
53
                      unsigned char *out, unsigned char *tag, size_t tag_len)
54
43.3k
{
55
43.3k
    int ret = 0;
56
57
    /* Use saved AAD */
58
43.3k
    if (!ctx->hw->aadupdate(ctx, aad, aad_len))
59
0
        goto err;
60
43.3k
    if (!ctx->hw->cipherupdate(ctx, in, in_len, out))
61
0
        goto err;
62
43.3k
    ctx->taglen = GCM_TAG_MAX_SIZE;
63
43.3k
    if (!ctx->hw->cipherfinal(ctx, tag))
64
41.6k
        goto err;
65
1.72k
    ret = 1;
66
67
43.3k
err:
68
43.3k
    return ret;
69
1.72k
}