twofish_generic.c (552c69b36ebd966186573b9c7a286b390935cce1) | twofish_generic.c (c4741b23059794bd99beef0f700103b0d983b3fd) |
---|---|
1/* 2 * Twofish for CryptoAPI 3 * 4 * Originally Twofish for GPG 5 * By Matthew Skala <mskala@ansuz.sooke.bc.ca>, July 26, 1998 6 * 256-bit key length added March 20, 1999 7 * Some modifications to reduce the text size by Werner Koch, April, 1998 8 * Ported to the kerneli patch by Marc Mutz <Marc@Mutz.com> --- 191 unchanged lines hidden (view full) --- 200 return crypto_register_alg(&alg); 201} 202 203static void __exit twofish_mod_fini(void) 204{ 205 crypto_unregister_alg(&alg); 206} 207 | 1/* 2 * Twofish for CryptoAPI 3 * 4 * Originally Twofish for GPG 5 * By Matthew Skala <mskala@ansuz.sooke.bc.ca>, July 26, 1998 6 * 256-bit key length added March 20, 1999 7 * Some modifications to reduce the text size by Werner Koch, April, 1998 8 * Ported to the kerneli patch by Marc Mutz <Marc@Mutz.com> --- 191 unchanged lines hidden (view full) --- 200 return crypto_register_alg(&alg); 201} 202 203static void __exit twofish_mod_fini(void) 204{ 205 crypto_unregister_alg(&alg); 206} 207 |
208module_init(twofish_mod_init); | 208subsys_initcall(twofish_mod_init); |
209module_exit(twofish_mod_fini); 210 211MODULE_LICENSE("GPL"); 212MODULE_DESCRIPTION ("Twofish Cipher Algorithm"); 213MODULE_ALIAS_CRYPTO("twofish"); 214MODULE_ALIAS_CRYPTO("twofish-generic"); | 209module_exit(twofish_mod_fini); 210 211MODULE_LICENSE("GPL"); 212MODULE_DESCRIPTION ("Twofish Cipher Algorithm"); 213MODULE_ALIAS_CRYPTO("twofish"); 214MODULE_ALIAS_CRYPTO("twofish-generic"); |