Fixes:
bd323ae6c832 ("openssl: Migrate from deprecated EC_POINT_[set|get]_affine_coordinates_GFp() functions")
Closes strongswan/strongswan#332
goto failed;
}
G = EC_POINT_new(group);
goto failed;
}
G = EC_POINT_new(group);
-#ifdef OPENSSL_VERSION_NUMBER >= 0x1010100fL
+#if OPENSSL_VERSION_NUMBER >= 0x1010100fL
if (!G || !EC_POINT_set_affine_coordinates(group, G, x, y, ctx))
#else
if (!G || !EC_POINT_set_affine_coordinates_GFp(group, G, x, y, ctx))
if (!G || !EC_POINT_set_affine_coordinates(group, G, x, y, ctx))
#else
if (!G || !EC_POINT_set_affine_coordinates_GFp(group, G, x, y, ctx))