摘要: SM3编译 #include <stdio.h> #include <stdlib.h> #include <string.h> #define SHL(x,n) (x<<n) #define SHR(x,n) (x>>n) #define ROTL(x,n) ((x<<n)|(x>>(32-n)) 阅读全文
posted @ 2023-10-20 11:35 入林寻梨花白 阅读(10) 评论(0) 推荐(0) 编辑