1 Star 0 Fork 15

木鹿 / libevent

forked from Gitee 极速下载 / libevent 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
sha1.h 320 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef SHA1_H
#define SHA1_H
/*
SHA-1 in C
By Steve Reid <steve@edmweb.com>
100% Public Domain
*/
#include "stdint.h"
typedef struct {
uint32_t state[5];
uint32_t count[2];
unsigned char buffer[64];
} SHA1_CTX;
void builtin_SHA1(char *hash_out, const char *str, int len);
#endif /* SHA1_H */
1
https://gitee.com/sofu456/libevent.git
git@gitee.com:sofu456/libevent.git
sofu456
libevent
libevent
master

搜索帮助