s390/dasd: fix failfast for disconnected devices
[linux-2.6/btrfs-unstable.git] / include / linux / cryptohash.h
blobf4754282c9c2a11dbfdd1a3865fcdeb5666abdf6
1 #ifndef __CRYPTOHASH_H
2 #define __CRYPTOHASH_H
4 #include <uapi/linux/types.h>
6 #define SHA_DIGEST_WORDS 5
7 #define SHA_MESSAGE_BYTES (512 /*bits*/ / 8)
8 #define SHA_WORKSPACE_WORDS 16
10 void sha_init(__u32 *buf);
11 void sha_transform(__u32 *digest, const char *data, __u32 *W);
13 #define MD5_DIGEST_WORDS 4
14 #define MD5_MESSAGE_BYTES 64
16 void md5_transform(__u32 *hash, __u32 const *in);
18 __u32 half_md4_transform(__u32 buf[4], __u32 const in[8]);
20 #endif