]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/ec/ecdsa_sign.c
Deprecate the ECDSA and EV_KEY_METHOD functions.
[thirdparty/openssl.git] / crypto / ec / ecdsa_sign.c
CommitLineData
aa6bb135
RS
1/*
2 * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
4d94ae00 3 *
a7f182b7 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
aa6bb135
RS
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
4d94ae00 8 */
0bee0e62 9
579422c8
P
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
6e73d12e 16#include <openssl/ec.h>
706457b7 17#include "ec_local.h"
6e73d12e 18#include <openssl/err.h>
4d94ae00 19
9dd84053
NL
20ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dlen, EC_KEY *eckey)
21{
0f113f3e 22 return ECDSA_do_sign_ex(dgst, dlen, NULL, NULL, eckey);
9dd84053
NL
23}
24
25ECDSA_SIG *ECDSA_do_sign_ex(const unsigned char *dgst, int dlen,
0f113f3e
MC
26 const BIGNUM *kinv, const BIGNUM *rp,
27 EC_KEY *eckey)
4d94ae00 28{
91e7bcc2 29 if (eckey->meth->sign_sig != NULL)
bd3602eb 30 return eckey->meth->sign_sig(dgst, dlen, kinv, rp, eckey);
6e73d12e 31 ECerr(EC_F_ECDSA_DO_SIGN_EX, EC_R_OPERATION_NOT_SUPPORTED);
bd3602eb 32 return NULL;
4d94ae00
BM
33}
34
0f113f3e
MC
35int ECDSA_sign(int type, const unsigned char *dgst, int dlen, unsigned char
36 *sig, unsigned int *siglen, EC_KEY *eckey)
9dd84053 37{
0f113f3e 38 return ECDSA_sign_ex(type, dgst, dlen, sig, siglen, NULL, NULL, eckey);
9dd84053
NL
39}
40
a200a817
DSH
41int ECDSA_sign_ex(int type, const unsigned char *dgst, int dlen,
42 unsigned char *sig, unsigned int *siglen, const BIGNUM *kinv,
0f113f3e 43 const BIGNUM *r, EC_KEY *eckey)
4d94ae00 44{
91e7bcc2 45 if (eckey->meth->sign != NULL)
a200a817
DSH
46 return eckey->meth->sign(type, dgst, dlen, sig, siglen, kinv, r, eckey);
47 ECerr(EC_F_ECDSA_SIGN_EX, EC_R_OPERATION_NOT_SUPPORTED);
48 return 0;
4d94ae00
BM
49}
50
0f113f3e
MC
51int ECDSA_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
52 BIGNUM **rp)
4d94ae00 53{
91e7bcc2 54 if (eckey->meth->sign_setup != NULL)
bd3602eb 55 return eckey->meth->sign_setup(eckey, ctx_in, kinvp, rp);
6e73d12e 56 ECerr(EC_F_ECDSA_SIGN_SETUP, EC_R_OPERATION_NOT_SUPPORTED);
bd3602eb 57 return 0;
4d94ae00 58}