Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gcmLengths (0.25 sec)

  1. lib/fips140/v1.0.0-c2097c7c.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 Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  2. lib/fips140/v1.1.0-rc1.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 Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top