1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-06-16 19:50:01 +02:00

src/openssl/ec.cpp: Remove unused variables.

This commit is contained in:
Henrik Hautakoski 2023-03-21 15:43:39 +01:00
parent 15eaa97cec
commit a3efb5a5f2

View file

@ -110,10 +110,6 @@ int calculate_pubkey(EC_KEY *ec_key, ec_pubkey_t *pub) {
int ec_get_publickey(const ec_privkey_t *priv, ec_pubkey_t* pub) {
const BIGNUM* n;
const EC_GROUP *group;
EC_POINT *point;
// Load private key
if (EC_KEY_oct2priv(k, priv->data(), EC_PRIVKEY_SIZE) == 0) {
return -1;