crypto_hash method

int crypto_hash(
  1. Pointer<UnsignedChar> out,
  2. Pointer<UnsignedChar> in1,
  3. int inlen
)

Implementation

int crypto_hash(
  ffi.Pointer<ffi.UnsignedChar> out,
  ffi.Pointer<ffi.UnsignedChar> in1,
  int inlen,
) {
  return _crypto_hash(
    out,
    in1,
    inlen,
  );
}