wp512.c (0a87a2db485a1456b7427914969c0e8195a1bbda) | wp512.c (3e14dcf7cb80b34a1f38b55bc96f02d23fdaaaaf) |
---|---|
1/* 2 * Cryptographic API. 3 * 4 * Whirlpool hashing Algorithm 5 * 6 * The Whirlpool algorithm was developed by Paulo S. L. M. Barreto and 7 * Vincent Rijmen. It has been selected as one of cryptographic 8 * primitives by the NESSIE project http://www.cryptonessie.org/ --- 1153 unchanged lines hidden (view full) --- 1162 return crypto_register_shashes(wp_algs, ARRAY_SIZE(wp_algs)); 1163} 1164 1165static void __exit wp512_mod_fini(void) 1166{ 1167 crypto_unregister_shashes(wp_algs, ARRAY_SIZE(wp_algs)); 1168} 1169 | 1/* 2 * Cryptographic API. 3 * 4 * Whirlpool hashing Algorithm 5 * 6 * The Whirlpool algorithm was developed by Paulo S. L. M. Barreto and 7 * Vincent Rijmen. It has been selected as one of cryptographic 8 * primitives by the NESSIE project http://www.cryptonessie.org/ --- 1153 unchanged lines hidden (view full) --- 1162 return crypto_register_shashes(wp_algs, ARRAY_SIZE(wp_algs)); 1163} 1164 1165static void __exit wp512_mod_fini(void) 1166{ 1167 crypto_unregister_shashes(wp_algs, ARRAY_SIZE(wp_algs)); 1168} 1169 |
1170MODULE_ALIAS_CRYPTO("wp512"); |
|
1170MODULE_ALIAS_CRYPTO("wp384"); 1171MODULE_ALIAS_CRYPTO("wp256"); 1172 1173module_init(wp512_mod_init); 1174module_exit(wp512_mod_fini); 1175 1176MODULE_LICENSE("GPL"); 1177MODULE_DESCRIPTION("Whirlpool Message Digest Algorithm"); | 1171MODULE_ALIAS_CRYPTO("wp384"); 1172MODULE_ALIAS_CRYPTO("wp256"); 1173 1174module_init(wp512_mod_init); 1175module_exit(wp512_mod_fini); 1176 1177MODULE_LICENSE("GPL"); 1178MODULE_DESCRIPTION("Whirlpool Message Digest Algorithm"); |