]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - arch/x86/crypto/aes_glue.c
Merge branch 'writeback-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-artful-kernel.git] / arch / x86 / crypto / aes_glue.c
1 /*
2 * Glue Code for the asm optimized version of the AES Cipher Algorithm
3 *
4 */
5
6 #include <crypto/aes.h>
7 #include <asm/aes.h>
8
9 asmlinkage void aes_enc_blk(struct crypto_aes_ctx *ctx, u8 *out, const u8 *in);
10 asmlinkage void aes_dec_blk(struct crypto_aes_ctx *ctx, u8 *out, const u8 *in);
11
12 void crypto_aes_encrypt_x86(struct crypto_aes_ctx *ctx, u8 *dst, const u8 *src)
13 {
14 aes_enc_blk(ctx, dst, src);
15 }
16 EXPORT_SYMBOL_GPL(crypto_aes_encrypt_x86);
17
18 void crypto_aes_decrypt_x86(struct crypto_aes_ctx *ctx, u8 *dst, const u8 *src)
19 {
20 aes_dec_blk(ctx, dst, src);
21 }
22 EXPORT_SYMBOL_GPL(crypto_aes_decrypt_x86);
23
24 static void aes_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
25 {
26 aes_enc_blk(crypto_tfm_ctx(tfm), dst, src);
27 }
28
29 static void aes_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
30 {
31 aes_dec_blk(crypto_tfm_ctx(tfm), dst, src);
32 }
33
34 static struct crypto_alg aes_alg = {
35 .cra_name = "aes",
36 .cra_driver_name = "aes-asm",
37 .cra_priority = 200,
38 .cra_flags = CRYPTO_ALG_TYPE_CIPHER,
39 .cra_blocksize = AES_BLOCK_SIZE,
40 .cra_ctxsize = sizeof(struct crypto_aes_ctx),
41 .cra_module = THIS_MODULE,
42 .cra_list = LIST_HEAD_INIT(aes_alg.cra_list),
43 .cra_u = {
44 .cipher = {
45 .cia_min_keysize = AES_MIN_KEY_SIZE,
46 .cia_max_keysize = AES_MAX_KEY_SIZE,
47 .cia_setkey = crypto_aes_set_key,
48 .cia_encrypt = aes_encrypt,
49 .cia_decrypt = aes_decrypt
50 }
51 }
52 };
53
54 static int __init aes_init(void)
55 {
56 return crypto_register_alg(&aes_alg);
57 }
58
59 static void __exit aes_fini(void)
60 {
61 crypto_unregister_alg(&aes_alg);
62 }
63
64 module_init(aes_init);
65 module_exit(aes_fini);
66
67 MODULE_DESCRIPTION("Rijndael (AES) Cipher Algorithm, asm optimized");
68 MODULE_LICENSE("GPL");
69 MODULE_ALIAS("aes");
70 MODULE_ALIAS("aes-asm");