generate_private_key function

  1. @Native<Void Function(Pointer<UnsignedChar>)>(ffi.Pointer<ffi.UnsignedChar>)>(symbol: 'generate_private_key')
void generate_private_key(
  1. Pointer<UnsignedChar> result
)

Generate a private key and store it in result. @param result Pointer to the location where the key will be stored.

Implementation

@ffi.Native<ffi.Void Function(ffi.Pointer<ffi.UnsignedChar>)>(
    symbol: 'generate_private_key')
external void generate_private_key(
  ffi.Pointer<ffi.UnsignedChar> result,
);