pub unsafe extern "C" fn EC_KEY_set_public_key_affine_coordinates(
key: *mut ec_key_st,
x: *mut bignum_st,
y: *mut bignum_st,
) -> i32
Expand description
Sets a public key from affine coordinates performing necessary NIST PKV tests. \param key the EC_KEY object \param x public key x coordinate \param y public key y coordinate \return 1 on success and 0 otherwise.