EC_KEY_dup function
Creates a new EC_KEY object and copies the content from src to it. \param src the source EC_KEY object \return newly created EC_KEY object or NULL if an error occurred.
Implementation
@ffi.Native<ffi.Pointer<ec_key_st> Function(ffi.Pointer<ec_key_st>)>()
external ffi.Pointer<ec_key_st> EC_KEY_dup(ffi.Pointer<ec_key_st> src);