anubis.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) | anubis.c (c4741b23059794bd99beef0f700103b0d983b3fd) |
---|---|
1/* 2 * Cryptographic API. 3 * 4 * Anubis Algorithm 5 * 6 * The Anubis algorithm was developed by Paulo S. L. M. Barreto and 7 * Vincent Rijmen. 8 * --- 685 unchanged lines hidden (view full) --- 694 return ret; 695} 696 697static void __exit anubis_mod_fini(void) 698{ 699 crypto_unregister_alg(&anubis_alg); 700} 701 | 1/* 2 * Cryptographic API. 3 * 4 * Anubis Algorithm 5 * 6 * The Anubis algorithm was developed by Paulo S. L. M. Barreto and 7 * Vincent Rijmen. 8 * --- 685 unchanged lines hidden (view full) --- 694 return ret; 695} 696 697static void __exit anubis_mod_fini(void) 698{ 699 crypto_unregister_alg(&anubis_alg); 700} 701 |
702module_init(anubis_mod_init); | 702subsys_initcall(anubis_mod_init); |
703module_exit(anubis_mod_fini); 704 705MODULE_LICENSE("GPL"); 706MODULE_DESCRIPTION("Anubis Cryptographic Algorithm"); 707MODULE_ALIAS_CRYPTO("anubis"); | 703module_exit(anubis_mod_fini); 704 705MODULE_LICENSE("GPL"); 706MODULE_DESCRIPTION("Anubis Cryptographic Algorithm"); 707MODULE_ALIAS_CRYPTO("anubis"); |