-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 75888 b: refs/heads/master c: 16d004a h: refs/heads/master v: v3
- Loading branch information
Evgeniy Polyakov
authored and
Herbert Xu
committed
Jan 10, 2008
1 parent
27ac0ec
commit a725b2a
Showing
3 changed files
with
21 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: f7d0561ea1dadec5462846520b1f4fb304294fd5 | ||
refs/heads/master: 16d004a2eda7be2c6a2de63eca2ad3c6b57307b3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* DES & Triple DES EDE Cipher Algorithms. | ||
*/ | ||
|
||
#ifndef __CRYPTO_DES_H | ||
#define __CRYPTO_DES_H | ||
|
||
#define DES_KEY_SIZE 8 | ||
#define DES_EXPKEY_WORDS 32 | ||
#define DES_BLOCK_SIZE 8 | ||
|
||
#define DES3_EDE_KEY_SIZE (3 * DES_KEY_SIZE) | ||
#define DES3_EDE_EXPKEY_WORDS (3 * DES_EXPKEY_WORDS) | ||
#define DES3_EDE_BLOCK_SIZE DES_BLOCK_SIZE | ||
|
||
|
||
extern unsigned long des_ekey(u32 *pe, const u8 *k); | ||
|
||
#endif /* __CRYPTO_DES_H */ |