crypto_core_hsalsa20 method

int crypto_core_hsalsa20(
  1. Pointer<UnsignedChar> out,
  2. Pointer<UnsignedChar> in1,
  3. Pointer<UnsignedChar> k,
  4. Pointer<UnsignedChar> c,
)

Implementation

int crypto_core_hsalsa20(
  ffi.Pointer<ffi.UnsignedChar> out,
  ffi.Pointer<ffi.UnsignedChar> in1,
  ffi.Pointer<ffi.UnsignedChar> k,
  ffi.Pointer<ffi.UnsignedChar> c,
) {
  return _crypto_core_hsalsa20(
    out,
    in1,
    k,
    c,
  );
}