Searched refs:QUARTERROUND (Results 1 – 3 of 3) sorted by relevance
| /f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_core/hchacha20/ |
| H A D | core_hchacha20.c | 8 #define QUARTERROUND(A, B, C, D) \ macro 49 QUARTERROUND(x0, x4, x8, x12); in crypto_core_hchacha20() 50 QUARTERROUND(x1, x5, x9, x13); in crypto_core_hchacha20() 51 QUARTERROUND(x2, x6, x10, x14); in crypto_core_hchacha20() 52 QUARTERROUND(x3, x7, x11, x15); in crypto_core_hchacha20() 53 QUARTERROUND(x0, x5, x10, x15); in crypto_core_hchacha20() 54 QUARTERROUND(x1, x6, x11, x12); in crypto_core_hchacha20() 55 QUARTERROUND(x2, x7, x8, x13); in crypto_core_hchacha20() 56 QUARTERROUND(x3, x4, x9, x14); in crypto_core_hchacha20()
|
| /f-stack/freebsd/crypto/chacha20/ |
| H A D | chacha.c | 50 #define QUARTERROUND(a,b,c,d) \ macro 167 QUARTERROUND( x0, x4, x8,x12) in chacha_encrypt_bytes() 168 QUARTERROUND( x1, x5, x9,x13) in chacha_encrypt_bytes() 169 QUARTERROUND( x2, x6,x10,x14) in chacha_encrypt_bytes() 170 QUARTERROUND( x3, x7,x11,x15) in chacha_encrypt_bytes() 171 QUARTERROUND( x0, x5,x10,x15) in chacha_encrypt_bytes() 172 QUARTERROUND( x1, x6,x11,x12) in chacha_encrypt_bytes() 173 QUARTERROUND( x2, x7, x8,x13) in chacha_encrypt_bytes() 174 QUARTERROUND( x3, x4, x9,x14) in chacha_encrypt_bytes()
|
| /f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_stream/chacha20/ref/ |
| H A D | chacha20_ref.c | 35 #define QUARTERROUND(a, b, c, d) \ macro 142 QUARTERROUND(x0, x4, x8, x12) in chacha20_encrypt_bytes() 143 QUARTERROUND(x1, x5, x9, x13) in chacha20_encrypt_bytes() 144 QUARTERROUND(x2, x6, x10, x14) in chacha20_encrypt_bytes() 145 QUARTERROUND(x3, x7, x11, x15) in chacha20_encrypt_bytes() 146 QUARTERROUND(x0, x5, x10, x15) in chacha20_encrypt_bytes() 147 QUARTERROUND(x1, x6, x11, x12) in chacha20_encrypt_bytes() 148 QUARTERROUND(x2, x7, x8, x13) in chacha20_encrypt_bytes() 149 QUARTERROUND(x3, x4, x9, x14) in chacha20_encrypt_bytes()
|