Searched refs:ROTL (Results 1 – 5 of 5) sorted by relevance
| /OK3568_Linux_fs/external/security/librkcrypto/test/c_mode/ |
| H A D | sm4_core.c | 61 #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 D | hash_sm3.c | 228 #define ROTL(x,n) (((x)<<(n)) | ((x)>>(32-(n)))) macro
|
| /OK3568_Linux_fs/u-boot/lib/avb/libavb/ |
| H A D | avb_sha512.c | 43 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
|
| H A D | avb_sha256.c | 68 #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 D | sha2_impl.c | 47 #define ROTL(x, n) ((x << n) | (x >> ((sizeof(x) << 3) - n))) macro
|