cast6_generic.c (0a87a2db485a1456b7427914969c0e8195a1bbda) | cast6_generic.c (3e14dcf7cb80b34a1f38b55bc96f02d23fdaaaaf) |
---|---|
1/* Kernel cryptographic api. 2 * cast6.c - Cast6 cipher algorithm [rfc2612]. 3 * 4 * CAST-256 (*cast6*) is a DES like Substitution-Permutation Network (SPN) 5 * cryptosystem built upon the CAST-128 (*cast5*) [rfc2144] encryption 6 * algorithm. 7 * 8 * Copyright (C) 2003 Kartikey Mahendra Bhatt <kartik_me@hotmail.com>. --- 278 unchanged lines hidden (view full) --- 287} 288 289module_init(cast6_mod_init); 290module_exit(cast6_mod_fini); 291 292MODULE_LICENSE("GPL"); 293MODULE_DESCRIPTION("Cast6 Cipher Algorithm"); 294MODULE_ALIAS_CRYPTO("cast6"); | 1/* Kernel cryptographic api. 2 * cast6.c - Cast6 cipher algorithm [rfc2612]. 3 * 4 * CAST-256 (*cast6*) is a DES like Substitution-Permutation Network (SPN) 5 * cryptosystem built upon the CAST-128 (*cast5*) [rfc2144] encryption 6 * algorithm. 7 * 8 * Copyright (C) 2003 Kartikey Mahendra Bhatt <kartik_me@hotmail.com>. --- 278 unchanged lines hidden (view full) --- 287} 288 289module_init(cast6_mod_init); 290module_exit(cast6_mod_fini); 291 292MODULE_LICENSE("GPL"); 293MODULE_DESCRIPTION("Cast6 Cipher Algorithm"); 294MODULE_ALIAS_CRYPTO("cast6"); |
295MODULE_ALIAS_CRYPTO("cast6-generic"); |
|