ofb.c (95d002e0a34cb0f238abb39987f9980f325d8332) | ofb.c (c4741b23059794bd99beef0f700103b0d983b3fd) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2 3/* 4 * OFB: Output FeedBack mode 5 * 6 * Copyright (C) 2018 ARM Limited or its affiliates. 7 * All rights reserved. 8 */ --- 81 unchanged lines hidden (view full) --- 90 return crypto_register_template(&crypto_ofb_tmpl); 91} 92 93static void __exit crypto_ofb_module_exit(void) 94{ 95 crypto_unregister_template(&crypto_ofb_tmpl); 96} 97 | 1// SPDX-License-Identifier: GPL-2.0 2 3/* 4 * OFB: Output FeedBack mode 5 * 6 * Copyright (C) 2018 ARM Limited or its affiliates. 7 * All rights reserved. 8 */ --- 81 unchanged lines hidden (view full) --- 90 return crypto_register_template(&crypto_ofb_tmpl); 91} 92 93static void __exit crypto_ofb_module_exit(void) 94{ 95 crypto_unregister_template(&crypto_ofb_tmpl); 96} 97 |
98module_init(crypto_ofb_module_init); | 98subsys_initcall(crypto_ofb_module_init); |
99module_exit(crypto_ofb_module_exit); 100 101MODULE_LICENSE("GPL"); 102MODULE_DESCRIPTION("OFB block cipher mode of operation"); 103MODULE_ALIAS_CRYPTO("ofb"); | 99module_exit(crypto_ofb_module_exit); 100 101MODULE_LICENSE("GPL"); 102MODULE_DESCRIPTION("OFB block cipher mode of operation"); 103MODULE_ALIAS_CRYPTO("ofb"); |