ASoC: wm_adsp: Separate concept of booted and running
[linux-2.6/btrfs-unstable.git] / include / crypto / des.h
blobfc6274c6bb26cbfc6056c8abc1dcc5668c847119
1 /*
2 * DES & Triple DES EDE Cipher Algorithms.
3 */
5 #ifndef __CRYPTO_DES_H
6 #define __CRYPTO_DES_H
8 #define DES_KEY_SIZE 8
9 #define DES_EXPKEY_WORDS 32
10 #define DES_BLOCK_SIZE 8
12 #define DES3_EDE_KEY_SIZE (3 * DES_KEY_SIZE)
13 #define DES3_EDE_EXPKEY_WORDS (3 * DES_EXPKEY_WORDS)
14 #define DES3_EDE_BLOCK_SIZE DES_BLOCK_SIZE
17 extern unsigned long des_ekey(u32 *pe, const u8 *k);
19 extern int __des3_ede_setkey(u32 *expkey, u32 *flags, const u8 *key,
20 unsigned int keylen);
22 #endif /* __CRYPTO_DES_H */