md4.c (3eb66e91a25497065c5322b1268cbc3953642227) md4.c (c4741b23059794bd99beef0f700103b0d983b3fd)
1/*
2 * Cryptographic API.
3 *
4 * MD4 Message Digest Algorithm (RFC1320).
5 *
6 * Implementation derived from Andrew Tridgell and Steve French's
7 * CIFS MD4 implementation, and the cryptoapi implementation
8 * originally based on the public domain implementation written

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

227 return crypto_register_shash(&alg);
228}
229
230static void __exit md4_mod_fini(void)
231{
232 crypto_unregister_shash(&alg);
233}
234
1/*
2 * Cryptographic API.
3 *
4 * MD4 Message Digest Algorithm (RFC1320).
5 *
6 * Implementation derived from Andrew Tridgell and Steve French's
7 * CIFS MD4 implementation, and the cryptoapi implementation
8 * originally based on the public domain implementation written

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

227 return crypto_register_shash(&alg);
228}
229
230static void __exit md4_mod_fini(void)
231{
232 crypto_unregister_shash(&alg);
233}
234
235module_init(md4_mod_init);
235subsys_initcall(md4_mod_init);
236module_exit(md4_mod_fini);
237
238MODULE_LICENSE("GPL");
239MODULE_DESCRIPTION("MD4 Message Digest Algorithm");
240MODULE_ALIAS_CRYPTO("md4");
236module_exit(md4_mod_fini);
237
238MODULE_LICENSE("GPL");
239MODULE_DESCRIPTION("MD4 Message Digest Algorithm");
240MODULE_ALIAS_CRYPTO("md4");