sha512_generic.c (0a87a2db485a1456b7427914969c0e8195a1bbda) | sha512_generic.c (3e14dcf7cb80b34a1f38b55bc96f02d23fdaaaaf) |
---|---|
1/* SHA-512 code by Jean-Luc Cooke <jlcooke@certainkey.com> 2 * 3 * Copyright (c) Jean-Luc Cooke <jlcooke@certainkey.com> 4 * Copyright (c) Andrew McDonald <andrew@mcdonald.org.uk> 5 * Copyright (c) 2003 Kyle McMartin <kyle@debian.org> 6 * 7 * This program is free software; you can redistribute it and/or modify it 8 * under the terms of the GNU General Public License as published by the --- 275 unchanged lines hidden (view full) --- 284 285module_init(sha512_generic_mod_init); 286module_exit(sha512_generic_mod_fini); 287 288MODULE_LICENSE("GPL"); 289MODULE_DESCRIPTION("SHA-512 and SHA-384 Secure Hash Algorithms"); 290 291MODULE_ALIAS_CRYPTO("sha384"); | 1/* SHA-512 code by Jean-Luc Cooke <jlcooke@certainkey.com> 2 * 3 * Copyright (c) Jean-Luc Cooke <jlcooke@certainkey.com> 4 * Copyright (c) Andrew McDonald <andrew@mcdonald.org.uk> 5 * Copyright (c) 2003 Kyle McMartin <kyle@debian.org> 6 * 7 * This program is free software; you can redistribute it and/or modify it 8 * under the terms of the GNU General Public License as published by the --- 275 unchanged lines hidden (view full) --- 284 285module_init(sha512_generic_mod_init); 286module_exit(sha512_generic_mod_fini); 287 288MODULE_LICENSE("GPL"); 289MODULE_DESCRIPTION("SHA-512 and SHA-384 Secure Hash Algorithms"); 290 291MODULE_ALIAS_CRYPTO("sha384"); |
292MODULE_ALIAS_CRYPTO("sha384-generic"); |
|
292MODULE_ALIAS_CRYPTO("sha512"); | 293MODULE_ALIAS_CRYPTO("sha512"); |
294MODULE_ALIAS_CRYPTO("sha512-generic"); |
|