VirtualBox

source: kBuild/trunk/src/lib/md5.h@ 1218

最後變更 在這個檔案從1218是 1000,由 bird 提交於 18 年 前

Added md5 and crc32. (pd and netbsd respectivly)

  • 屬性 svn:eol-style 設為 native
檔案大小: 397 位元組
 
1#ifndef MD5_H
2#define MD5_H
3
4#include "mytypes.h"
5
6struct MD5Context {
7 uint32_t buf[4];
8 uint32_t bits[2];
9 unsigned char in[64];
10};
11
12void MD5Init(struct MD5Context *);
13void MD5Update(struct MD5Context *, const unsigned char *, unsigned);
14void MD5Final(unsigned char digest[16], struct MD5Context *);
15void MD5Transform(uint32_t buf[4], uint32_t in[16]);
16
17#endif /* !MD5_H */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette