Searched refs:RORc (Results 1 – 11 of 11) sorted by relevance
/external/dropbear/libtomcrypt/src/ciphers/aes/ |
D | aes_tab.c | 307 #define Te1(x) RORc(TE0[x], 8) 308 #define Te2(x) RORc(TE0[x], 16) 309 #define Te3(x) RORc(TE0[x], 24) 312 #define Td1(x) RORc(TD0[x], 8) 313 #define Td2(x) RORc(TD0[x], 16) 314 #define Td3(x) RORc(TD0[x], 24)
|
D | aes.c | 204 rk[12] = rk[ 4] ^ setup_mix(RORc(temp, 8)); in SETUP()
|
/external/dropbear/libtomcrypt/src/ciphers/ |
D | noekeon.c | 42 temp = a^c; temp = temp ^ ROLc(temp, 8) ^ RORc(temp, 8); \ 44 temp = b^d; temp = temp ^ ROLc(temp, 8) ^ RORc(temp, 8); \ 48 temp = a^c; temp = temp ^ ROLc(temp, 8) ^ RORc(temp, 8); \ 50 temp = b^d; temp = temp ^ ROLc(temp, 8) ^ RORc(temp, 8); \ 65 a = RORc(a, 1); c = RORc(c, 5); d = RORc(d, 2);
|
D | des.c | 1453 work = RORc(right, 4) ^ *keys++; in desfunc() 1464 work = RORc(leftt, 4) ^ *keys++; in desfunc() 1477 right = RORc(right, 1); in desfunc() 1481 leftt = RORc(leftt, 1); in desfunc()
|
/external/wpa_supplicant/ |
D | des.c | 50 #define RORc(x, y) \ macro 358 work = RORc(right, 4) ^ *keys++; in desfunc() 369 work = RORc(leftt, 4) ^ *keys++; in desfunc() 381 right = RORc(right, 1); in desfunc() 385 leftt = RORc(leftt, 1); in desfunc()
|
D | sha256.c | 215 #define RORc(x, y) \ macro 220 #define S(x, n) RORc((x), (n))
|
/external/dropbear/libtomcrypt/src/headers/ |
D | tomcrypt_macros.h | 242 #define RORc(x,n) _lrotr(x,n) macro 273 static inline unsigned RORc(unsigned word, const int i) in RORc() function 284 #define RORc ROR macro 316 static inline unsigned RORc(unsigned word, const int i) in RORc() function 327 #define RORc ROR macro 338 #define RORc(x, y) ( ((((unsigned long)(x)&0xFFFFFFFFUL)>>(unsigned long)((y)&31)) | ((unsigned lon… macro
|
/external/dropbear/libtomcrypt/src/ciphers/twofish/ |
D | twofish.c | 506 c = RORc(c ^ (t1 + k[0]), 1); in _twofish_ecb_encrypt() 511 a = RORc(a ^ (t1 + k[2]), 1); in _twofish_ecb_encrypt() 583 b = RORc(b ^ (t2 + t1 + k[3]), 1); in _twofish_ecb_decrypt() 588 d = RORc(d ^ (t2 + t1 + k[1]), 1); in _twofish_ecb_decrypt()
|
/external/dropbear/libtomcrypt/src/prngs/ |
D | sober128.c | 91 t = RORc(t, 8); \
|
/external/dropbear/libtomcrypt/src/hashes/sha2/ |
D | sha256.c | 60 #define S(x, n) RORc((x),(n))
|
/external/dropbear/libtomcrypt/ |
D | crypt.tex | 297 \index{ROL} \index{ROR} \index{ROL64} \index{ROR64} \index{ROLc} \index{RORc} \index{ROL64c} \index… 305 …\hline RORc(x, y) & {\bf unsigned long} x, {\bf const unsigned long} y & $x >> y, 0 \le y \le 31$ …
|