crypto_poly1305 function

  1. @Native<Void Function(Pointer<Uint8>, Pointer<Uint8>, Size, Pointer<Uint8>)>(ffi.Pointer<ffi.Uint8>, ffi.Pointer<ffi.Uint8>, ffi.Size, ffi.Pointer<ffi.Uint8>)>()
void crypto_poly1305(
  1. Pointer<Uint8> mac,
  2. Pointer<Uint8> message,
  3. int message_size,
  4. Pointer<Uint8> key,
)

Direct interface

Implementation

@ffi.Native<
  ffi.Void Function(
    ffi.Pointer<ffi.Uint8>,
    ffi.Pointer<ffi.Uint8>,
    ffi.Size,
    ffi.Pointer<ffi.Uint8>,
  )
>()
external void crypto_poly1305(
  ffi.Pointer<ffi.Uint8> mac,
  ffi.Pointer<ffi.Uint8> message,
  int message_size,
  ffi.Pointer<ffi.Uint8> key,
);