crypto_blake2b_keyed function
- @Native<Void Function(Pointer<Uint8>, Size, Pointer<Uint8>, Size, Pointer<Uint8>, Size)>(ffi.Pointer<ffi.Uint8>, ffi.Size, ffi.Pointer<ffi.Uint8>, ffi.Size, ffi.Pointer<ffi.Uint8>, ffi.Size)>()
void
crypto_blake2b_keyed(
- Pointer<Uint8> hash,
- int hash_size,
- Pointer<Uint8> key,
- int key_size,
- Pointer<Uint8> message,
- int message_size,
)
Implementation
@ffi.Native<
ffi.Void Function(
ffi.Pointer<ffi.Uint8>,
ffi.Size,
ffi.Pointer<ffi.Uint8>,
ffi.Size,
ffi.Pointer<ffi.Uint8>,
ffi.Size,
)
>()
external void crypto_blake2b_keyed(
ffi.Pointer<ffi.Uint8> hash,
int hash_size,
ffi.Pointer<ffi.Uint8> key,
int key_size,
ffi.Pointer<ffi.Uint8> message,
int message_size,
);