1.2.14.2 WDRV_WINC_SSL_REQ_ECC_CALLBACK Typedef
C
typedef void (*WDRV_WINC_SSL_REQ_ECC_CALLBACK)
Summary
Callback to request ECC information.
Description
Called when authentication with ECC Cipher suites.
Parameters
Param | Description |
---|---|
handle | Client handle obtained by a call to WDRV_WINC_Open. |
reqType | Request type. |
eccReqInfo | ECC request info. |
pExtendInfo | Extra information relevant to the request. |
Returns
None.
Remarks
pExtendInfo contains information related to the type of request being made: if reqType is WDRV_WINC_ECC_REQ_CLIENT_ECDH or ECC_REQ_SERVER_ECDH the information is stored in a WDRV_WINC_ECDH_INFO structure pExtendInfo->ecdhInfo. If reqType is WDRV_WINC_ECC_REQ_GEN_KEY pExtendInfo is NULL. If reqType is WDRV_WINC_ECC_REQ_SIGN_GEN the information is stored in a WDRV_WINC_ECDSA_SIGN_REQ_INFO structure pExtendInfo->ecdsaSignReqInfo. If reqType is WDRV_WINC_ECC_REQ_SIGN_VERIFY the information is stored in a WDRV_WINC_ECDSA_VERIFY_REQ_INFO structure pExtendInfo->ecdsaVerifyReqInfo.