EC_POINT_dup

Creates a new EC_POINT object and copies the content of the supplied EC_POINT

extern (C) nothrow @nogc
EC_POINT_dup
(
const(.EC_POINT)* src
,
const(.EC_GROUP)* group
)

Parameters

src const(.EC_POINT)*

source EC_POINT object

group const(.EC_GROUP)*

underlying the EC_GROUP object

Return Value

Type: .EC_POINT*

newly created EC_POINT object or null if an error occurred

Meta