EC_POINT_new function
- @Native<Pointer<
ec_point_st> Function(Pointer<ec_group_st> )>(ffi.Pointer<ec_group_st>)>()
- Pointer<
ec_group_st> group
Creates a new EC_POINT object for the specified EC_GROUP \param group EC_GROUP the underlying EC_GROUP object \return newly created EC_POINT object or NULL if an error occurred
Implementation
@ffi.Native<ffi.Pointer<ec_point_st> Function(ffi.Pointer<ec_group_st>)>()
external ffi.Pointer<ec_point_st> EC_POINT_new(ffi.Pointer<ec_group_st> group);