keccackF1600 static method
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);
}