Home
last modified time | relevance | path

Searched refs:ROTL (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/external/security/librkcrypto/test/c_mode/
H A Dsm4_core.c61 #define ROTL(x,n) (SHL((x),n) | ((x) >> (32 - n))) macro
137 c =bb^(ROTL(bb, 2))^(ROTL(bb, 10))^(ROTL(bb, 18))^(ROTL(bb, 24)); in sm4Lt()
174 rk = bb^(ROTL(bb, 13))^(ROTL(bb, 23)); in sm4CalciRK()
H A Dhash_sm3.c228 #define ROTL(x,n) (((x)<<(n)) | ((x)>>(32-(n)))) macro
/OK3568_Linux_fs/u-boot/lib/avb/libavb/
H A Davb_sha512.c43 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
H A Davb_sha256.c68 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
/OK3568_Linux_fs/external/security/rk_tee_user/v2/ta/crypt/
H A Dsha2_impl.c47 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro