seed.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) seed.c (c4741b23059794bd99beef0f700103b0d983b3fd)
1/*
2 * Cryptographic API.
3 *
4 * SEED Cipher Algorithm.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or

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

465 return crypto_register_alg(&seed_alg);
466}
467
468static void __exit seed_fini(void)
469{
470 crypto_unregister_alg(&seed_alg);
471}
472
1/*
2 * Cryptographic API.
3 *
4 * SEED Cipher Algorithm.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or

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

465 return crypto_register_alg(&seed_alg);
466}
467
468static void __exit seed_fini(void)
469{
470 crypto_unregister_alg(&seed_alg);
471}
472
473module_init(seed_init);
473subsys_initcall(seed_init);
474module_exit(seed_fini);
475
476MODULE_DESCRIPTION("SEED Cipher Algorithm");
477MODULE_LICENSE("GPL");
478MODULE_AUTHOR("Hye-Shik Chang <perky@FreeBSD.org>, Kim Hyun <hkim@kisa.or.kr>");
479MODULE_ALIAS_CRYPTO("seed");
474module_exit(seed_fini);
475
476MODULE_DESCRIPTION("SEED Cipher Algorithm");
477MODULE_LICENSE("GPL");
478MODULE_AUTHOR("Hye-Shik Chang <perky@FreeBSD.org>, Kim Hyun <hkim@kisa.or.kr>");
479MODULE_ALIAS_CRYPTO("seed");