Precompute parts of the signing operation
Declared in <openssl/ec.h>
[[deprecated]]
int
ECDSA_sign_setup(
EC_KEY* eckey,
BN_CTX* ctx,
BIGNUM** kinv,
BIGNUM** rp);
Deprecated. Use of this entity is allowed but discouraged.
1 on success and 0 otherwise
| Name | Description |
|---|---|
| eckey | EC_KEY object containing a private EC key |
| ctx | BN_CTX object (optional) |
| kinv | BIGNUM pointer for the inverse of k |
| rp | BIGNUM pointer for x coordinate of k * generator |