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