1 /* 2 * Copyright (c) 2017-2018 The Linux Foundation. All rights reserved. 3 * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved. 4 * 5 * Permission to use, copy, modify, and/or distribute this software for 6 * any purpose with or without fee is hereby granted, provided that the 7 * above copyright notice and this permission notice appear in all 8 * copies. 9 * 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL 11 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED 12 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE 13 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL 14 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR 15 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 16 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 17 * PERFORMANCE OF THIS SOFTWARE. 18 */ 19 20 /** 21 * DOC: Private API for crypto service with object manager handler 22 */ 23 #ifndef _WLAN_CRYPTO_MAIN_I_H_ 24 #define _WLAN_CRYPTO_MAIN_I_H_ 25 26 /** 27 * __wlan_crypto_init() - Init the crypto service with object manager 28 * Called from umac init context. 29 * 30 * Return: QDF_STATUS_SUCCESS - in case of success 31 */ 32 QDF_STATUS __wlan_crypto_init(void); 33 34 /** 35 * __wlan_crypto_deinit() - Deinit the crypto service with object manager 36 * Called from umac deinit context. 37 * 38 * Return: QDF_STATUS_SUCCESS - in case of success 39 */ 40 QDF_STATUS __wlan_crypto_deinit(void); 41 42 43 #endif /* end of _WLAN_CRYPTO_MAIN_I_H_ */ 44