cast5_generic.c (0a87a2db485a1456b7427914969c0e8195a1bbda) | cast5_generic.c (3e14dcf7cb80b34a1f38b55bc96f02d23fdaaaaf) |
---|---|
1/* Kernel cryptographic api. 2* cast5.c - Cast5 cipher algorithm (rfc2144). 3* 4* Derived from GnuPG implementation of cast5. 5* 6* Major Changes. 7* Complete conformance to rfc2144. 8* Supports key size from 40 to 128 bits. --- 536 unchanged lines hidden (view full) --- 545} 546 547module_init(cast5_mod_init); 548module_exit(cast5_mod_fini); 549 550MODULE_LICENSE("GPL"); 551MODULE_DESCRIPTION("Cast5 Cipher Algorithm"); 552MODULE_ALIAS_CRYPTO("cast5"); | 1/* Kernel cryptographic api. 2* cast5.c - Cast5 cipher algorithm (rfc2144). 3* 4* Derived from GnuPG implementation of cast5. 5* 6* Major Changes. 7* Complete conformance to rfc2144. 8* Supports key size from 40 to 128 bits. --- 536 unchanged lines hidden (view full) --- 545} 546 547module_init(cast5_mod_init); 548module_exit(cast5_mod_fini); 549 550MODULE_LICENSE("GPL"); 551MODULE_DESCRIPTION("Cast5 Cipher Algorithm"); 552MODULE_ALIAS_CRYPTO("cast5"); |
553MODULE_ALIAS_CRYPTO("cast5-generic"); |
|