Merge tag 'mfd-for-linus-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd
[deliverable/linux.git] / arch / x86 / crypto / aes_glue.c
CommitLineData
a2a892a2 1/*
06e1a8f0 2 * Glue Code for the asm optimized version of the AES Cipher Algorithm
a2a892a2 3 *
a2a892a2
AS
4 */
5
7c52d551 6#include <linux/module.h>
89e12654 7#include <crypto/aes.h>
70ef2601 8#include <asm/crypto/aes.h>
a2a892a2 9
07bf44f8
HY
10asmlinkage void aes_enc_blk(struct crypto_aes_ctx *ctx, u8 *out, const u8 *in);
11asmlinkage void aes_dec_blk(struct crypto_aes_ctx *ctx, u8 *out, const u8 *in);
12
13void crypto_aes_encrypt_x86(struct crypto_aes_ctx *ctx, u8 *dst, const u8 *src)
14{
15 aes_enc_blk(ctx, dst, src);
16}
17EXPORT_SYMBOL_GPL(crypto_aes_encrypt_x86);
18
19void crypto_aes_decrypt_x86(struct crypto_aes_ctx *ctx, u8 *dst, const u8 *src)
20{
21 aes_dec_blk(ctx, dst, src);
22}
23EXPORT_SYMBOL_GPL(crypto_aes_decrypt_x86);
e90b1a2b
HX
24
25static void aes_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
26{
07bf44f8 27 aes_enc_blk(crypto_tfm_ctx(tfm), dst, src);
e90b1a2b
HX
28}
29
30static void aes_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
31{
07bf44f8 32 aes_dec_blk(crypto_tfm_ctx(tfm), dst, src);
e90b1a2b 33}
a2a892a2
AS
34
35static struct crypto_alg aes_alg = {
06e1a8f0
SS
36 .cra_name = "aes",
37 .cra_driver_name = "aes-asm",
38 .cra_priority = 200,
39 .cra_flags = CRYPTO_ALG_TYPE_CIPHER,
40 .cra_blocksize = AES_BLOCK_SIZE,
41 .cra_ctxsize = sizeof(struct crypto_aes_ctx),
42 .cra_module = THIS_MODULE,
06e1a8f0
SS
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
a2a892a2
AS
50 }
51 }
52};
53
54static int __init aes_init(void)
55{
a2a892a2
AS
56 return crypto_register_alg(&aes_alg);
57}
58
59static void __exit aes_fini(void)
60{
61 crypto_unregister_alg(&aes_alg);
62}
63
64module_init(aes_init);
65module_exit(aes_fini);
66
06e1a8f0 67MODULE_DESCRIPTION("Rijndael (AES) Cipher Algorithm, asm optimized");
a2a892a2 68MODULE_LICENSE("GPL");
5d26a105
KC
69MODULE_ALIAS_CRYPTO("aes");
70MODULE_ALIAS_CRYPTO("aes-asm");
This page took 0.724347 seconds and 5 git commands to generate.