summaryrefslogtreecommitdiffstats
path: root/crypto/ecdsa
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2006-02-13 08:16:00 +0000
committerNils Larsch <nils@openssl.org>2006-02-13 08:16:00 +0000
commit0c9caf04deadc28da11578363b533670237cb918 (patch)
tree002d9d77e7e4875ee562e2aa2901baf99c06bddd /crypto/ecdsa
parent21e8bbf2904e5ac8709d46424e18f8ba6e813b06 (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