| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Cryptographic API. |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * 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 |
|---|
| 9 | | - * (at your option) any later version. |
|---|
| 10 | 6 | * |
|---|
| 11 | 7 | * Documentation of SEED can be found in RFC 4269. |
|---|
| 12 | 8 | * Copyright (C) 2007 Korea Information Security Agency (KISA). |
|---|
| .. | .. |
|---|
| 470 | 466 | crypto_unregister_alg(&seed_alg); |
|---|
| 471 | 467 | } |
|---|
| 472 | 468 | |
|---|
| 473 | | -module_init(seed_init); |
|---|
| 469 | +subsys_initcall(seed_init); |
|---|
| 474 | 470 | module_exit(seed_fini); |
|---|
| 475 | 471 | |
|---|
| 476 | 472 | MODULE_DESCRIPTION("SEED Cipher Algorithm"); |
|---|