21 lines
379 B
C
21 lines
379 B
C
|
|
/*
|
||
|
|
* Copyright (c) Hunan Goke,Chengdu Goke,Shandong Goke. 2021. All rights reserved.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef __DRV_RSA_H__
|
||
|
|
#define __DRV_RSA_H__
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
/***************************** Macro Definition ******************************/
|
||
|
|
|
||
|
|
gk_s32 drv_rsa_init(gk_void);
|
||
|
|
gk_void drv_rsa_deinit(gk_void);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
#endif /* __DRV_CIPHER_H__ */
|