crypto_blake2b_update function

  1. @Native<Void Function(Pointer<crypto_blake2b_ctx>, Pointer<Uint8>, Size)>(ffi.Pointer<crypto_blake2b_ctx>, ffi.Pointer<ffi.Uint8>, ffi.Size)>()
void crypto_blake2b_update(
  1. Pointer<crypto_blake2b_ctx> ctx,
  2. Pointer<Uint8> message,
  3. int message_size
)

Implementation

@ffi.Native<
  ffi.Void Function(
    ffi.Pointer<crypto_blake2b_ctx>,
    ffi.Pointer<ffi.Uint8>,
    ffi.Size,
  )
>()
external void crypto_blake2b_update(
  ffi.Pointer<crypto_blake2b_ctx> ctx,
  ffi.Pointer<ffi.Uint8> message,
  int message_size,
);