2005-07-06 22:55:00 +02:00
|
|
|
/*
|
2007-11-08 14:25:04 +01:00
|
|
|
* Glue Code for AES Cipher Algorithm
|
2005-07-06 22:55:00 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-10-17 17:18:57 +02:00
|
|
|
#include <crypto/aes.h>
|
2005-07-06 22:55:00 +02:00
|
|
|
|
2006-06-02 00:42:25 +02:00
|
|
|
asmlinkage void aes_enc_blk(struct crypto_tfm *tfm, u8 *out, const u8 *in);
|
|
|
|
asmlinkage void aes_dec_blk(struct crypto_tfm *tfm, u8 *out, const u8 *in);
|
|
|
|
|
|
|
|
static void aes_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
|
|
|
|
{
|
|
|
|
aes_enc_blk(tfm, dst, src);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void aes_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
|
|
|
|
{
|
|
|
|
aes_dec_blk(tfm, dst, src);
|
|
|
|
}
|
2005-07-06 22:55:00 +02:00
|
|
|
|
|
|
|
static struct crypto_alg aes_alg = {
|
|
|
|
.cra_name = "aes",
|
2005-11-05 08:06:26 +01:00
|
|
|
.cra_driver_name = "aes-x86_64",
|
|
|
|
.cra_priority = 200,
|
2005-07-06 22:55:00 +02:00
|
|
|
.cra_flags = CRYPTO_ALG_TYPE_CIPHER,
|
|
|
|
.cra_blocksize = AES_BLOCK_SIZE,
|
2007-11-08 14:25:04 +01:00
|
|
|
.cra_ctxsize = sizeof(struct crypto_aes_ctx),
|
2005-07-06 22:55:00 +02:00
|
|
|
.cra_module = THIS_MODULE,
|
|
|
|
.cra_list = LIST_HEAD_INIT(aes_alg.cra_list),
|
|
|
|
.cra_u = {
|
|
|
|
.cipher = {
|
|
|
|
.cia_min_keysize = AES_MIN_KEY_SIZE,
|
|
|
|
.cia_max_keysize = AES_MAX_KEY_SIZE,
|
2007-11-08 14:25:04 +01:00
|
|
|
.cia_setkey = crypto_aes_set_key,
|
2005-07-06 22:55:00 +02:00
|
|
|
.cia_encrypt = aes_encrypt,
|
|
|
|
.cia_decrypt = aes_decrypt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init aes_init(void)
|
|
|
|
{
|
|
|
|
return crypto_register_alg(&aes_alg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit aes_fini(void)
|
|
|
|
{
|
|
|
|
crypto_unregister_alg(&aes_alg);
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(aes_init);
|
|
|
|
module_exit(aes_fini);
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION("Rijndael (AES) Cipher Algorithm");
|
|
|
|
MODULE_LICENSE("GPL");
|
2005-08-08 23:49:18 +02:00
|
|
|
MODULE_ALIAS("aes");
|