crypto_elligator_key_pair function

  1. @Native<Void Function(Pointer<Uint8>, Pointer<Uint8>, Pointer<Uint8>)>(ffi.Pointer<ffi.Uint8>, ffi.Pointer<ffi.Uint8>, ffi.Pointer<ffi.Uint8>)>()
void crypto_elligator_key_pair(
  1. Pointer<Uint8> hidden,
  2. Pointer<Uint8> secret_key,
  3. Pointer<Uint8> seed
)

Easy to use key pair generation

Implementation

@ffi.Native<
  ffi.Void Function(
    ffi.Pointer<ffi.Uint8>,
    ffi.Pointer<ffi.Uint8>,
    ffi.Pointer<ffi.Uint8>,
  )
>()
external void crypto_elligator_key_pair(
  ffi.Pointer<ffi.Uint8> hidden,
  ffi.Pointer<ffi.Uint8> secret_key,
  ffi.Pointer<ffi.Uint8> seed,
);