crypto_eddsa_mul_add function

  1. @Native<Void Function(Pointer<Uint8>, Pointer<Uint8>, Pointer<Uint8>, Pointer<Uint8>)>(ffi.Pointer<ffi.Uint8>, ffi.Pointer<ffi.Uint8>, ffi.Pointer<ffi.Uint8>, ffi.Pointer<ffi.Uint8>)>()
void crypto_eddsa_mul_add(
  1. Pointer<Uint8> r,
  2. Pointer<Uint8> a,
  3. Pointer<Uint8> b,
  4. Pointer<Uint8> c,
)

Implementation

@ffi.Native<
  ffi.Void Function(
    ffi.Pointer<ffi.Uint8>,
    ffi.Pointer<ffi.Uint8>,
    ffi.Pointer<ffi.Uint8>,
    ffi.Pointer<ffi.Uint8>,
  )
>()
external void crypto_eddsa_mul_add(
  ffi.Pointer<ffi.Uint8> r,
  ffi.Pointer<ffi.Uint8> a,
  ffi.Pointer<ffi.Uint8> b,
  ffi.Pointer<ffi.Uint8> c,
);