Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Keccak (0.07 sec)

  1. lib/fips140/v1.0.0.zip

    0x0000000080000001, 0x8000000080008008, } // keccakF1600Generic applies the Keccak permutation. func keccakF1600Generic(da *[200]byte) { var a *[25]uint64 if cpu.BigEndian { a = new([25]uint64) for i := range a { a[i] = byteorder.LEUint64(da[i*8:]) } defer func() { for i := range a { byteorder.LEPutUint64(da[i*8:], a[i]) } }() } else { a = (*[25]uint64)(unsafe.Pointer(da)) } // Implementation translated from Keccak-inplace.c // in the keccak reference code. var t, bc0, bc1, bc2, bc3, bc4, d0, d1, d2, d3, d4...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top