Searched refs:x (Results 1 – 3 of 3) sorted by relevance
/libcrypt/ |
A D | md5.c | 145 #define F(x, y, z) (((x) & (y)) | ((~x) & (z))) argument 146 #define G(x, y, z) (((x) & (z)) | ((y) & (~z))) argument 147 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument 148 #define I(x, y, z) ((y) ^ ((x) | (~z))) argument 151 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument 157 #define FF(a, b, c, d, x, s, ac) { \ argument 162 #define GG(a, b, c, d, x, s, ac) { \ argument 277 u_int32_t a, b, c, d, x[16]; in __md5_Transform() local 327 __md5_Decode (x, block, 64); in __md5_Transform() 351 temp += x[(int)(*pp++)] + *pc++; in __md5_Transform() [all …]
|
A D | sha256.c | 111 #define _Ch(x, y, z) ((x & y) ^ (~x & z)) in sha256_process_block() argument 112 #define _Maj(x, y, z) ((x & y) ^ (x & z) ^ (y & z)) in sha256_process_block() argument 113 #define _S0(x) (CYCLIC (x, 2) ^ CYCLIC (x, 13) ^ CYCLIC (x, 22)) in sha256_process_block() argument 114 #define _S1(x) (CYCLIC (x, 6) ^ CYCLIC (x, 11) ^ CYCLIC (x, 25)) in sha256_process_block() argument 115 #define _R0(x) (CYCLIC (x, 7) ^ CYCLIC (x, 18) ^ (x >> 3)) in sha256_process_block() argument 116 #define _R1(x) (CYCLIC (x, 17) ^ CYCLIC (x, 19) ^ (x >> 10)) in sha256_process_block() argument
|
A D | sha512.c | 142 #define _Ch(x, y, z) ((x & y) ^ (~x & z)) in sha512_process_block() argument 143 #define _Maj(x, y, z) ((x & y) ^ (x & z) ^ (y & z)) in sha512_process_block() argument 144 #define _S0(x) (CYCLIC (x, 28) ^ CYCLIC (x, 34) ^ CYCLIC (x, 39)) in sha512_process_block() argument 145 #define _S1(x) (CYCLIC (x, 14) ^ CYCLIC (x, 18) ^ CYCLIC (x, 41)) in sha512_process_block() argument 146 #define _R0(x) (CYCLIC (x, 1) ^ CYCLIC (x, 8) ^ (x >> 7)) in sha512_process_block() argument 147 #define _R1(x) (CYCLIC (x, 19) ^ CYCLIC (x, 61) ^ (x >> 6)) in sha512_process_block() argument
|
Completed in 10 milliseconds