EC_POINT_add

Computes the sum of two EC_POINT

extern (C) nothrow @nogc
int
EC_POINT_add

Parameters

group const(.EC_GROUP)*

underlying EC_GROUP object

r .EC_POINT*

EC_POINT object for the result (r = a + b)

a const(.EC_POINT)*

EC_POINT object with the first summand

b const(.EC_POINT)*

EC_POINT object with the second summand

ctx libressl_d.openssl.ossl_typ.BN_CTX*

BN_CTX object (optional)

Return Value

Type: int

1 on success and 0 if an error occured

Meta