crypto_eddsa_check function

  1. @Native<Int Function(Pointer<Uint8>, Pointer<Uint8>, Pointer<Uint8>, Size)>(ffi.Pointer<ffi.Uint8>, ffi.Pointer<ffi.Uint8>, ffi.Pointer<ffi.Uint8>, ffi.Size)>()
int crypto_eddsa_check(
  1. Pointer<Uint8> signature,
  2. Pointer<Uint8> public_key,
  3. Pointer<Uint8> message,
  4. int message_size,
)

Implementation

@ffi.Native<
  ffi.Int Function(
    ffi.Pointer<ffi.Uint8>,
    ffi.Pointer<ffi.Uint8>,
    ffi.Pointer<ffi.Uint8>,
    ffi.Size,
  )
>()
external int crypto_eddsa_check(
  ffi.Pointer<ffi.Uint8> signature,
  ffi.Pointer<ffi.Uint8> public_key,
  ffi.Pointer<ffi.Uint8> message,
  int message_size,
);