123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- #ifndef CRYS_ECPKI_DH_H
- #define CRYS_ECPKI_DH_H
- #include "crys_ecpki_types.h"
- #include "crys_ecpki_error.h"
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- CIMPORT_C CRYSError_t CRYS_ECDH_SVDP_DH(
- CRYS_ECPKI_UserPublKey_t *PartnerPublKey_ptr,
- CRYS_ECPKI_UserPrivKey_t *UserPrivKey_ptr,
- uint8_t *SharedSecretValue_ptr,
- uint32_t *SharedSecrValSize_ptr,
- CRYS_ECDH_TempData_t *TempBuff_ptr );
- #ifdef __cplusplus
- }
- #endif
- #endif
|