12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #ifndef CRYS_ECPKI_KG_H
- #define CRYS_ECPKI_KG_H
- #include "crys_error.h"
- #include "crys_rnd.h"
- #include "crys_ecpki_types.h"
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- CIMPORT_C CRYSError_t CRYS_ECPKI_GenKeyPair(
- void *rndState_ptr,
- SaSiRndGenerateVectWorkFunc_t rndGenerateVectFunc,
- const CRYS_ECPKI_Domain_t *pDomain,
- CRYS_ECPKI_UserPrivKey_t *pUserPrivKey,
- CRYS_ECPKI_UserPublKey_t *pUserPublKey,
- CRYS_ECPKI_KG_TempData_t *pTempData,
- CRYS_ECPKI_KG_FipsContext_t *pFipsCtx
- );
- #ifdef __cplusplus
- }
- #endif
- #endif
|