Coverage Report

Created: 2025-12-10 06:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/crypto/ec/ecdsa_sign.c
Line
Count
Source
1
/*
2
 * Copyright 2015-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
/*
11
 * ECDSA low level APIs are deprecated for public use, but still ok for
12
 * internal use.
13
 */
14
#include "internal/deprecated.h"
15
16
#include <openssl/ec.h>
17
#include "ec_local.h"
18
#include <openssl/err.h>
19
20
ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dlen, EC_KEY *eckey)
21
0
{
22
0
    return ECDSA_do_sign_ex(dgst, dlen, NULL, NULL, eckey);
23
0
}
24
25
ECDSA_SIG *ECDSA_do_sign_ex(const unsigned char *dgst, int dlen,
26
    const BIGNUM *kinv, const BIGNUM *rp,
27
    EC_KEY *eckey)
28
0
{
29
0
    if (eckey->meth->sign_sig != NULL)
30
0
        return eckey->meth->sign_sig(dgst, dlen, kinv, rp, eckey);
31
0
    ERR_raise(ERR_LIB_EC, EC_R_OPERATION_NOT_SUPPORTED);
32
0
    return NULL;
33
0
}
34
35
int ECDSA_sign(int type, const unsigned char *dgst, int dlen, unsigned char *sig, unsigned int *siglen, EC_KEY *eckey)
36
0
{
37
0
    return ECDSA_sign_ex(type, dgst, dlen, sig, siglen, NULL, NULL, eckey);
38
0
}
39
40
int ECDSA_sign_ex(int type, const unsigned char *dgst, int dlen,
41
    unsigned char *sig, unsigned int *siglen, const BIGNUM *kinv,
42
    const BIGNUM *r, EC_KEY *eckey)
43
0
{
44
0
    if (eckey->meth->sign != NULL)
45
0
        return eckey->meth->sign(type, dgst, dlen, sig, siglen, kinv, r, eckey);
46
0
    ERR_raise(ERR_LIB_EC, EC_R_OPERATION_NOT_SUPPORTED);
47
0
    return 0;
48
0
}
49
50
int ECDSA_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
51
    BIGNUM **rp)
52
0
{
53
0
    if (eckey->meth->sign_setup != NULL)
54
0
        return eckey->meth->sign_setup(eckey, ctx_in, kinvp, rp);
55
0
    ERR_raise(ERR_LIB_EC, EC_R_OPERATION_NOT_SUPPORTED);
56
0
    return 0;
57
0
}