-
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: 75891 b: refs/heads/master c: 89e1265 h: refs/heads/master i: 75889: 65689df 75887: 27ac0ec v: v3
- Loading branch information
Sebastian Siewior
authored and
Herbert Xu
committed
Jan 10, 2008
1 parent
baf6eaf
commit f62e115
Showing
8 changed files
with
22 additions
and
23 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: f1901f1fc710ec0fc482a7c98ee4552874139f39 | ||
refs/heads/master: 89e12654312dddbbdbf17b5adc95b22cb672f947 |
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
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
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
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,15 @@ | ||
/* | ||
* Common values for AES algorithms | ||
*/ | ||
|
||
#ifndef _CRYPTO_AES_H | ||
#define _CRYPTO_AES_H | ||
|
||
#define AES_MIN_KEY_SIZE 16 | ||
#define AES_MAX_KEY_SIZE 32 | ||
#define AES_KEYSIZE_128 16 | ||
#define AES_KEYSIZE_192 24 | ||
#define AES_KEYSIZE_256 32 | ||
#define AES_BLOCK_SIZE 16 | ||
|
||
#endif |