blowfish_generic.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) blowfish_generic.c (c4741b23059794bd99beef0f700103b0d983b3fd)
1/*
2 * Cryptographic API.
3 *
4 * Blowfish Cipher Algorithm, by Bruce Schneier.
5 * http://www.counterpane.com/blowfish.html
6 *
7 * Adapted from Kerneli implementation.
8 *

--- 119 unchanged lines hidden (view full) ---

128 return crypto_register_alg(&alg);
129}
130
131static void __exit blowfish_mod_fini(void)
132{
133 crypto_unregister_alg(&alg);
134}
135
1/*
2 * Cryptographic API.
3 *
4 * Blowfish Cipher Algorithm, by Bruce Schneier.
5 * http://www.counterpane.com/blowfish.html
6 *
7 * Adapted from Kerneli implementation.
8 *

--- 119 unchanged lines hidden (view full) ---

128 return crypto_register_alg(&alg);
129}
130
131static void __exit blowfish_mod_fini(void)
132{
133 crypto_unregister_alg(&alg);
134}
135
136module_init(blowfish_mod_init);
136subsys_initcall(blowfish_mod_init);
137module_exit(blowfish_mod_fini);
138
139MODULE_LICENSE("GPL");
140MODULE_DESCRIPTION("Blowfish Cipher Algorithm");
141MODULE_ALIAS_CRYPTO("blowfish");
142MODULE_ALIAS_CRYPTO("blowfish-generic");
137module_exit(blowfish_mod_fini);
138
139MODULE_LICENSE("GPL");
140MODULE_DESCRIPTION("Blowfish Cipher Algorithm");
141MODULE_ALIAS_CRYPTO("blowfish");
142MODULE_ALIAS_CRYPTO("blowfish-generic");