keccackF1600 static method

void keccackF1600(
  1. List<int> src
)

Implementation

static void keccackF1600(List<int> src) {
  /// temporary space for permutation (high bits)
  final List<int> sh = List<int>.filled(25, 0);

  /// temporary space for permutation (low bits)
  final List<int> sl = List<int>.filled(25, 0);
  _keccakf(sh, sl, src);
}