Home
last modified time | relevance | path

Searched refs:RORc (Results 1 – 11 of 11) sorted by relevance

/external/dropbear/libtomcrypt/src/ciphers/aes/
Daes_tab.c307 #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)
Daes.c204 rk[12] = rk[ 4] ^ setup_mix(RORc(temp, 8)); in SETUP()
/external/dropbear/libtomcrypt/src/ciphers/
Dnoekeon.c42 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);
Ddes.c1453 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/
Ddes.c50 #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()
Dsha256.c215 #define RORc(x, y) \ macro
220 #define S(x, n) RORc((x), (n))
/external/dropbear/libtomcrypt/src/headers/
Dtomcrypt_macros.h242 #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/
Dtwofish.c506 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/
Dsober128.c91 t = RORc(t, 8); \
/external/dropbear/libtomcrypt/src/hashes/sha2/
Dsha256.c60 #define S(x, n) RORc((x),(n))
/external/dropbear/libtomcrypt/
Dcrypt.tex297 \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$ …