Use generic EC_POINT_get_affine_coordinates

This commit is contained in:
Exzap 2022-11-05 22:09:21 +01:00
parent 348d86648f
commit ec6726e85c
2 changed files with 2 additions and 2 deletions

View File

@ -273,7 +273,7 @@ void iosuCrypto_generateDeviceCertificate()
BIGNUM* bn_x = BN_CTX_get(context);
BIGNUM* bn_y = BN_CTX_get(context);
EC_POINT_get_affine_coordinates_GF2m(group, pubkey, bn_x, bn_y, NULL);
EC_POINT_get_affine_coordinates(group, pubkey, bn_x, bn_y, NULL);
uint8 publicKeyOutput[0x3C];
memset(publicKeyOutput, 0, sizeof(publicKeyOutput));

View File

@ -550,7 +550,7 @@ namespace NCrypto
EC_POINT_mul(group, pubkey, bn_privKey, NULL, NULL, NULL);
BIGNUM* bn_x = BN_new();
BIGNUM* bn_y = BN_new();
EC_POINT_get_affine_coordinates_GF2m(group, pubkey, bn_x, bn_y, NULL);
EC_POINT_get_affine_coordinates(group, pubkey, bn_x, bn_y, NULL);
// store public key
ECCPubKey genPubKey;