-
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: 132683 b: refs/heads/master c: 07bf44f h: refs/heads/master i: 132681: 0d8e0c1 132679: b1ac0ee v: v3
- Loading branch information
Huang Ying
authored and
Herbert Xu
committed
Feb 18, 2009
1 parent
0895618
commit ab2680f
Showing
5 changed files
with
39 additions
and
18 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: 109568e110ed67d4be1b28609b9fa00fca97f8eb | ||
refs/heads/master: 07bf44f86989f5ed866510374fe761d1903681fb |
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,11 @@ | ||
#ifndef ASM_X86_AES_H | ||
#define ASM_X86_AES_H | ||
|
||
#include <linux/crypto.h> | ||
#include <crypto/aes.h> | ||
|
||
void crypto_aes_encrypt_x86(struct crypto_aes_ctx *ctx, u8 *dst, | ||
const u8 *src); | ||
void crypto_aes_decrypt_x86(struct crypto_aes_ctx *ctx, u8 *dst, | ||
const u8 *src); | ||
#endif |