EC_KEY_dup function

  1. @Native<Pointer<ec_key_st> Function(Pointer<ec_key_st>)>(ffi.Pointer<ec_key_st>)>()
Pointer<ec_key_st> EC_KEY_dup(
  1. Pointer<ec_key_st> src
)

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);