Coverage Report

Created: 2025-06-13 06:58

/src/openssl30/providers/common/der/der_ec_sig.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2020 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 <openssl/obj_mac.h>
11
#include "internal/packet.h"
12
#include "prov/der_ec.h"
13
14
/* Aliases so we can have a uniform MD_CASE */
15
5.03k
#define ossl_der_oid_id_ecdsa_with_sha1   ossl_der_oid_ecdsa_with_SHA1
16
412
#define ossl_der_oid_id_ecdsa_with_sha224 ossl_der_oid_ecdsa_with_SHA224
17
8.22k
#define ossl_der_oid_id_ecdsa_with_sha256 ossl_der_oid_ecdsa_with_SHA256
18
5.51k
#define ossl_der_oid_id_ecdsa_with_sha384 ossl_der_oid_ecdsa_with_SHA384
19
2.47k
#define ossl_der_oid_id_ecdsa_with_sha512 ossl_der_oid_ecdsa_with_SHA512
20
21
#define MD_CASE(name)                                                   \
22
10.8k
    case NID_##name:                                                    \
23
10.8k
        precompiled = ossl_der_oid_id_ecdsa_with_##name;                \
24
10.8k
        precompiled_sz = sizeof(ossl_der_oid_id_ecdsa_with_##name);     \
25
10.8k
        break;
26
27
int ossl_DER_w_algorithmIdentifier_ECDSA_with_MD(WPACKET *pkt, int cont,
28
                                                 EC_KEY *ec, int mdnid)
29
10.8k
{
30
10.8k
    const unsigned char *precompiled = NULL;
31
10.8k
    size_t precompiled_sz = 0;
32
33
10.8k
    switch (mdnid) {
34
2.51k
        MD_CASE(sha1);
35
206
        MD_CASE(sha224);
36
4.11k
        MD_CASE(sha256);
37
2.75k
        MD_CASE(sha384);
38
1.23k
        MD_CASE(sha512);
39
0
        MD_CASE(sha3_224);
40
0
        MD_CASE(sha3_256);
41
0
        MD_CASE(sha3_384);
42
0
        MD_CASE(sha3_512);
43
0
    default:
44
0
        return 0;
45
10.8k
    }
46
47
10.8k
    return ossl_DER_w_begin_sequence(pkt, cont)
48
        /* No parameters (yet?) */
49
10.8k
        && ossl_DER_w_precompiled(pkt, -1, precompiled, precompiled_sz)
50
10.8k
        && ossl_DER_w_end_sequence(pkt, cont);
51
10.8k
}