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));