C常见函数记录


C常见加密算法收集


SM3/* * sm3.h * * 为使此算法兼容32位、64位下Linux或Windows系统, * 选择 int 来表示 32 位整数。 * 消息长度最大限定为 2**32 - 1(单位:比特), * 且为 8 的倍数(消息的最小单元为字节)。 */#ifndef _SM3_H_#define

openssl常见加密算法使用


openssl MD5#include <openssl/md5.h>#include <stdio.h>#include <string.h>void md5hexToString(unsigned char *md,char *result){ // c