-
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.
ARM: move AES typedefs and function prototypes to separate header
Put the struct definitions for AES keys and the asm function prototypes in a separate header and export the asm functions from the module. This allows other drivers to use them directly. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
- Loading branch information
Ard Biesheuvel
committed
Oct 4, 2013
1 parent
cf154b7
commit 5ce26f3
Showing
2 changed files
with
25 additions
and
16 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
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 @@ | ||
|
||
#define AES_MAXNR 14 | ||
|
||
struct AES_KEY { | ||
unsigned int rd_key[4 * (AES_MAXNR + 1)]; | ||
int rounds; | ||
}; | ||
|
||
struct AES_CTX { | ||
struct AES_KEY enc_key; | ||
struct AES_KEY dec_key; | ||
}; | ||
|
||
asmlinkage void AES_encrypt(const u8 *in, u8 *out, struct AES_KEY *ctx); | ||
asmlinkage void AES_decrypt(const u8 *in, u8 *out, struct AES_KEY *ctx); | ||
asmlinkage int private_AES_set_decrypt_key(const unsigned char *userKey, | ||
const int bits, struct AES_KEY *key); | ||
asmlinkage int private_AES_set_encrypt_key(const unsigned char *userKey, | ||
const int bits, struct AES_KEY *key); |