Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.25 57 lines 1.3 kB view raw
1/* 2 * Glue Code for the asm optimized version of the AES Cipher Algorithm 3 * 4 */ 5 6#include <crypto/aes.h> 7 8asmlinkage void aes_enc_blk(struct crypto_tfm *tfm, u8 *out, const u8 *in); 9asmlinkage void aes_dec_blk(struct crypto_tfm *tfm, u8 *out, const u8 *in); 10 11static void aes_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) 12{ 13 aes_enc_blk(tfm, dst, src); 14} 15 16static void aes_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) 17{ 18 aes_dec_blk(tfm, dst, src); 19} 20 21static struct crypto_alg aes_alg = { 22 .cra_name = "aes", 23 .cra_driver_name = "aes-asm", 24 .cra_priority = 200, 25 .cra_flags = CRYPTO_ALG_TYPE_CIPHER, 26 .cra_blocksize = AES_BLOCK_SIZE, 27 .cra_ctxsize = sizeof(struct crypto_aes_ctx), 28 .cra_module = THIS_MODULE, 29 .cra_list = LIST_HEAD_INIT(aes_alg.cra_list), 30 .cra_u = { 31 .cipher = { 32 .cia_min_keysize = AES_MIN_KEY_SIZE, 33 .cia_max_keysize = AES_MAX_KEY_SIZE, 34 .cia_setkey = crypto_aes_set_key, 35 .cia_encrypt = aes_encrypt, 36 .cia_decrypt = aes_decrypt 37 } 38 } 39}; 40 41static int __init aes_init(void) 42{ 43 return crypto_register_alg(&aes_alg); 44} 45 46static void __exit aes_fini(void) 47{ 48 crypto_unregister_alg(&aes_alg); 49} 50 51module_init(aes_init); 52module_exit(aes_fini); 53 54MODULE_DESCRIPTION("Rijndael (AES) Cipher Algorithm, asm optimized"); 55MODULE_LICENSE("GPL"); 56MODULE_ALIAS("aes"); 57MODULE_ALIAS("aes-asm");