Sets a public key from affine coordinates performing necessary NIST PKV tests.

Synopsis

Declared in <openssl/ec.h>

[[deprecated]]
int
EC_KEY_set_public_key_affine_coordinates(
    EC_KEY* key,
    BIGNUM* x,
    BIGNUM* y);
Warning

Deprecated. Use of this entity is allowed but discouraged.

Return Value

1 on success and 0 otherwise.

Parameters

Name

Description

key

the EC_KEY object

x

public key x coordinate

y

public key y coordinate

Created with MrDocs