source:
kBuild/trunk/src/lib/md5.h@
1218
最後變更 在這個檔案從1218是 1000,由 提交於 18 年 前 | |
---|---|
|
|
檔案大小: 397 位元組 |
行 | |
---|---|
1 | #ifndef MD5_H |
2 | #define MD5_H |
3 | |
4 | #include "mytypes.h" |
5 | |
6 | struct MD5Context { |
7 | uint32_t buf[4]; |
8 | uint32_t bits[2]; |
9 | unsigned char in[64]; |
10 | }; |
11 | |
12 | void MD5Init(struct MD5Context *); |
13 | void MD5Update(struct MD5Context *, const unsigned char *, unsigned); |
14 | void MD5Final(unsigned char digest[16], struct MD5Context *); |
15 | void MD5Transform(uint32_t buf[4], uint32_t in[16]); |
16 | |
17 | #endif /* !MD5_H */ |
注意:
瀏覽 TracBrowser
來幫助您使用儲存庫瀏覽器