Linux 4.14.149
[linux-stable.git] / include / crypto / des.h
blobd4094d58ac54add8fcd78459aaa834c83ca8c415
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * DES & Triple DES EDE Cipher Algorithms.
4 */
6 #ifndef __CRYPTO_DES_H
7 #define __CRYPTO_DES_H
9 #define DES_KEY_SIZE 8
10 #define DES_EXPKEY_WORDS 32
11 #define DES_BLOCK_SIZE 8
13 #define DES3_EDE_KEY_SIZE (3 * DES_KEY_SIZE)
14 #define DES3_EDE_EXPKEY_WORDS (3 * DES_EXPKEY_WORDS)
15 #define DES3_EDE_BLOCK_SIZE DES_BLOCK_SIZE
18 extern unsigned long des_ekey(u32 *pe, const u8 *k);
20 extern int __des3_ede_setkey(u32 *expkey, u32 *flags, const u8 *key,
21 unsigned int keylen);
23 #endif /* __CRYPTO_DES_H */