summaryrefslogtreecommitdiffstats
path: root/crypto/ecdsa
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2006-02-13 08:22:39 +0000
committerNils Larsch <nils@openssl.org>2006-02-13 08:22:39 +0000
commit58828ae573c052eab004fa806fc5e4259e293461 (patch)
tree6537043c26df477f1e783b31a72eb2d2a1683db6 /crypto/ecdsa
parent6b5f5e35084eb40705797ab5341ebbec21bb5027 (diff)
fix typo: pass pre-computed parameters to the underlying signature function; thanks to Lucas Newman
Diffstat (limited to 'crypto/ecdsa')
-rw-r--r--crypto/ecdsa/ecs_sign.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ecdsa/ecs_sign.c b/crypto/ecdsa/ecs_sign.c
index 5143923050..74b1fe8caf 100644
--- a/crypto/ecdsa/ecs_sign.c
+++ b/crypto/ecdsa/ecs_sign.c
@@ -69,7 +69,7 @@ ECDSA_SIG *ECDSA_do_sign_ex(const unsigned char *dgst, int dlen,
ECDSA_DATA *ecdsa = ecdsa_check(eckey);
if (ecdsa == NULL)
return NULL;
- return ecdsa->meth->ecdsa_do_sign(dgst, dlen, NULL, NULL, eckey);
+ return ecdsa->meth->ecdsa_do_sign(dgst, dlen, kinv, rp, eckey);
}
int ECDSA_sign(int type, const unsigned char *dgst, int dlen, unsigned char