Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for gcmLengths (0.11 sec)

  1. lib/fips140/v1.0.0.zip

    "CPACF/KIMD", &useGHASH) impl.Register("gcm", "CPACF/KMA", &useGCM) } func checkGenericIsExpect() { if useGHASH || useGCM { panic("gcm: internal error: using generic implementation despite hardware support") } } // gcmLengths writes len0 || len1 as big-endian values to a 16-byte array. func gcmLengths(len0, len1 uint64) [16]byte { v := [16]byte{} byteorder.BEPutUint64(v[0:], len0) byteorder.BEPutUint64(v[8:], len1) return v } // gcmHashKey represents the 16-byte hash key required by the GHASH algorithm. type...
    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