crypto_eddsa_check_equation function

  1. @Native<Int Function(Pointer<Uint8>, Pointer<Uint8>, Pointer<Uint8>)>(ffi.Pointer<ffi.Uint8>, ffi.Pointer<ffi.Uint8>, ffi.Pointer<ffi.Uint8>)>()
int crypto_eddsa_check_equation(
  1. Pointer<Uint8> signature,
  2. Pointer<Uint8> public_key,
  3. Pointer<Uint8> h_ram
)

Implementation

@ffi.Native<
  ffi.Int Function(
    ffi.Pointer<ffi.Uint8>,
    ffi.Pointer<ffi.Uint8>,
    ffi.Pointer<ffi.Uint8>,
  )
>()
external int crypto_eddsa_check_equation(
  ffi.Pointer<ffi.Uint8> signature,
  ffi.Pointer<ffi.Uint8> public_key,
  ffi.Pointer<ffi.Uint8> h_ram,
);