[CRYPTO] tcrypt: Catch cipher destination memory corruption
[linux-2.6-block.git] / crypto / ripemd.h
CommitLineData
c6580eb8
AKR
1/*
2 * Common values for RIPEMD algorithms
3 */
4
5#ifndef _CRYPTO_RMD_H
6#define _CRYPTO_RMD_H
7
8#define RMD128_DIGEST_SIZE 16
9#define RMD128_BLOCK_SIZE 64
10
11#define RMD160_DIGEST_SIZE 20
12#define RMD160_BLOCK_SIZE 64
13
14#define RMD256_DIGEST_SIZE 32
15#define RMD256_BLOCK_SIZE 64
16
17#define RMD320_DIGEST_SIZE 40
18#define RMD320_BLOCK_SIZE 64
19
20#define RMD_H0 0x67452301UL
21#define RMD_H1 0xefcdab89UL
22#define RMD_H2 0x98badcfeUL
23#define RMD_H3 0x10325476UL
24#define RMD_H4 0xc3d2e1f0UL
25
26#endif