2005-04-17 06:20:36 +08:00
|
|
|
#ifndef __CRYPTOHASH_H
|
|
|
|
#define __CRYPTOHASH_H
|
|
|
|
|
|
|
|
#define SHA_DIGEST_WORDS 5
|
2009-12-03 02:12:09 +08:00
|
|
|
#define SHA_MESSAGE_BYTES (512 /*bits*/ / 8)
|
2011-08-06 09:46:27 +08:00
|
|
|
#define SHA_WORKSPACE_WORDS 16
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
void sha_init(__u32 *buf);
|
|
|
|
void sha_transform(__u32 *digest, const char *data, __u32 *W);
|
|
|
|
|
2011-08-04 10:45:10 +08:00
|
|
|
#define MD5_DIGEST_WORDS 4
|
|
|
|
#define MD5_MESSAGE_BYTES 64
|
|
|
|
|
|
|
|
void md5_transform(__u32 *hash, __u32 const *in);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
__u32 half_md4_transform(__u32 buf[4], __u32 const in[8]);
|
|
|
|
|
|
|
|
#endif
|