Home
last modified time | relevance | path

Searched refs:SHA256_K (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/contrib/openzfs/module/icp/algs/sha2/
H A Dsha2_generic.c42 static const uint32_t SHA256_K[64] = { variable
104 COMPRESS(i, 0, SHA256_K); in sha256_generic()
105 COMPRESS(i, 1, SHA256_K); in sha256_generic()
106 COMPRESS(i, 2, SHA256_K); in sha256_generic()
107 COMPRESS(i, 3, SHA256_K); in sha256_generic()
108 COMPRESS(i, 4, SHA256_K); in sha256_generic()
109 COMPRESS(i, 5, SHA256_K); in sha256_generic()
110 COMPRESS(i, 6, SHA256_K); in sha256_generic()
111 COMPRESS(i, 7, SHA256_K); in sha256_generic()
112 COMPRESS(i, 8, SHA256_K); in sha256_generic()
[all …]
/freebsd/sys/cddl/boot/zfs/
H A Dsha256.c64 static const uint32_t SHA256_K[64] = { variable
147 T1 = h + BIGSIGMA1_256(e) + Ch(e, f, g) + SHA256_K[t] + W[t]; in SHA256Transform()