crypto_blake2b function

  1. @Native<Void Function(Pointer<Uint8>, Size, Pointer<Uint8>, Size)>(ffi.Pointer<ffi.Uint8>, ffi.Size, ffi.Pointer<ffi.Uint8>, ffi.Size)>()
void crypto_blake2b(
  1. Pointer<Uint8> hash,
  2. int hash_size,
  3. Pointer<Uint8> message,
  4. int message_size,
)

Direct interface

Implementation

@ffi.Native<
  ffi.Void Function(
    ffi.Pointer<ffi.Uint8>,
    ffi.Size,
    ffi.Pointer<ffi.Uint8>,
    ffi.Size,
  )
>()
external void crypto_blake2b(
  ffi.Pointer<ffi.Uint8> hash,
  int hash_size,
  ffi.Pointer<ffi.Uint8> message,
  int message_size,
);