aboutsummaryrefslogtreecommitdiffstats
path: root/arch/i386/crypto/aes.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2006-06-01 18:42:25 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2006-06-26 03:34:42 -0400
commite90b1a2be6010acf01673b0625cfbf18240f7744 (patch)
tree7b99c136335b94bde40a6a260a6d823c83433024 /arch/i386/crypto/aes.c
parente805792851bcb0bb42f0c8a352be64564c13e374 (diff)
[CRYPTO] aes: Add wrappers for assembly routines
The wrapper routines are required when asmlinkage differs from the usual calling convention. So we need to have them. However, by rearranging the parameters, they will get optimised away to a single jump for most people. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/i386/crypto/aes.c')
-rw-r--r--arch/i386/crypto/aes.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/arch/i386/crypto/aes.c b/arch/i386/crypto/aes.c
index b9c7d99160f1..d3806daa3de3 100644
--- a/arch/i386/crypto/aes.c
+++ b/arch/i386/crypto/aes.c
@@ -464,6 +464,16 @@ static int aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
464 return 0; 464 return 0;
465} 465}
466 466
467static void aes_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
468{
469 aes_enc_blk(tfm, dst, src);
470}
471
472static void aes_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
473{
474 aes_dec_blk(tfm, dst, src);
475}
476
467static struct crypto_alg aes_alg = { 477static struct crypto_alg aes_alg = {
468 .cra_name = "aes", 478 .cra_name = "aes",
469 .cra_driver_name = "aes-i586", 479 .cra_driver_name = "aes-i586",
@@ -478,8 +488,8 @@ static struct crypto_alg aes_alg = {
478 .cia_min_keysize = AES_MIN_KEY_SIZE, 488 .cia_min_keysize = AES_MIN_KEY_SIZE,
479 .cia_max_keysize = AES_MAX_KEY_SIZE, 489 .cia_max_keysize = AES_MAX_KEY_SIZE,
480 .cia_setkey = aes_set_key, 490 .cia_setkey = aes_set_key,
481 .cia_encrypt = aes_enc_blk, 491 .cia_encrypt = aes_encrypt,
482 .cia_decrypt = aes_dec_blk 492 .cia_decrypt = aes_decrypt
483 } 493 }
484 } 494 }
485}; 495};