]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - keccak/rotate64.h
fixing style, typos and uart
[avr-crypto-lib.git] / keccak / rotate64.h
index 4d60c4ce3ed24460c68bcef765039d26c2551ae3..f1bdbbad964ac9140a8501da761a4154956f7bdf 100644 (file)
 #define ROTR_3 (8+3)
 
 
-#define ROT_BIT(a) (((a)<=4)?((a)<<1):(0x01|((8-(a))<<1)))
-
-//#define ROT_CODE(a,b) (((a)<<4) | ((b)&0x0f))
-
-#define ROT_CODE(a) ((((a)/8+((((a)%8)>4)?1:0))<<4) | ROT_BIT(((a)%8)))
-//#define ROT_CODE(a) ((((a)/8)<<4) | ((a)%8)) /* rotations only to the left */
-
 uint64_t rotate64_1bit_left(uint64_t a);
 uint64_t rotate64_1bit_right(uint64_t a);
 uint64_t rotate64_nbit_autodir(uint64_t a, int8_t n);