cryptoCoreHsalsa20 static method

int cryptoCoreHsalsa20(
  1. Uint8List out,
  2. Uint8List input,
  3. Uint8List k,
  4. Uint8List c,
)

Implementation

static int cryptoCoreHsalsa20(
    Uint8List out, Uint8List input, Uint8List k, Uint8List c) {
  ///core(out,in,k,c,1);
  _coreHsalsa20(out, input, k, c);
  return 0;
}