.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Cryptographic API. |
---|
3 | 4 | * |
---|
4 | 5 | * SHA-3, as specified in |
---|
5 | | - * http://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf |
---|
| 6 | + * https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf |
---|
6 | 7 | * |
---|
7 | 8 | * SHA-3 code by Jeff Garzik <jeff@garzik.org> |
---|
8 | 9 | * Ard Biesheuvel <ard.biesheuvel@linaro.org> |
---|
9 | | - * |
---|
10 | | - * This program is free software; you can redistribute it and/or modify it |
---|
11 | | - * under the terms of the GNU General Public License as published by the Free |
---|
12 | | - * Software Foundation; either version 2 of the License, or (at your option)• |
---|
13 | | - * any later version. |
---|
14 | | - * |
---|
15 | 10 | */ |
---|
16 | 11 | #include <crypto/internal/hash.h> |
---|
17 | 12 | #include <linux/init.h> |
---|
.. | .. |
---|
294 | 289 | crypto_unregister_shashes(algs, ARRAY_SIZE(algs)); |
---|
295 | 290 | } |
---|
296 | 291 | |
---|
297 | | -module_init(sha3_generic_mod_init); |
---|
| 292 | +subsys_initcall(sha3_generic_mod_init); |
---|
298 | 293 | module_exit(sha3_generic_mod_fini); |
---|
299 | 294 | |
---|
300 | 295 | MODULE_LICENSE("GPL"); |
---|