Home
last modified time | relevance | path

Searched refs:pDhUserCtx (Results 1 – 2 of 2) sorted by relevance

/trusted-firmware-m-3.7.0/lib/ext/cryptocell-312-runtime/shared/include/crypto_api/
Dcc_ffcdh.h490 CIMPORT_C CCError_t CC_FfcDhInitCtx( CCFfcDhUserContext_t *pDhUserCtx);
500 CIMPORT_C CCError_t CC_FfcDhFreeCtx( CCFfcDhUserContext_t *pDhUserCtx);
513 …CCFfcDhUserContext_t *pDhUserCtx, /*!< [in/out] pointer to context structure, containing all param…
577 … CCFfcDhUserContext_t *pDhUserCtx,/*!< [in/out] pointer to DH FFC User Context structure. */
622 … CCFfcDhUserContext_t *pDhUserCtx, /*!< [in/out] pointer to DH FFC Context structure. */
653 … CCFfcDhUserContext_t *pDhUserCtx, /*!< [in/out] pointer to DH FFC Context structure. */
683 … CCFfcDhUserContext_t *pDhUserCtx, /*!< [in/out] pointer to DH FFC Context structure. */
708 … CCFfcDhUserContext_t *pDhUserCtx, /*!< [in/out] pointer to context structure, containing all data,
758 …CCFfcDhUserContext_t *pDhUserCtx, /*!< [in/out] pointer to context structure, containing all data,…
830 …CCFfcDhUserContext_t *pDhUserCtx, /*!< [in] pointer to the user's DH context structure, containing…
/trusted-firmware-m-3.7.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/ffcdh/
Dcc_ffcdh.c340 CEXPORT_C CCError_t CC_FfcDhInitCtx( CCFfcDhUserContext_t *pDhUserCtx) in CC_FfcDhInitCtx() argument
350 CHECK_AND_SET_ERROR(pDhUserCtx == NULL, CC_FFCDH_INVALID_CONTEXT_PTR_ERROR); in CC_FfcDhInitCtx()
353 CC_PalMemSetZero((uint8_t*)pDhUserCtx, sizeof(CCFfcDhUserContext_t)); in CC_FfcDhInitCtx()
356 pDhUserCtx->validTag = FFCDH_CTX_VALID_TAG_INIT_VAL; in CC_FfcDhInitCtx()
370 CEXPORT_C CCError_t CC_FfcDhFreeCtx( CCFfcDhUserContext_t *pDhUserCtx) in CC_FfcDhFreeCtx() argument
380 CHECK_AND_SET_ERROR(pDhUserCtx == NULL, CC_FFCDH_INVALID_CONTEXT_PTR_ERROR); in CC_FfcDhFreeCtx()
383 CC_PalMemSetZero((uint8_t*)pDhUserCtx, sizeof(CCFfcDhUserContext_t)); in CC_FfcDhFreeCtx()
658 …CCFfcDhUserContext_t *pDhUserCtx, /*!< [in/out] pointer to context structure, containing all param… in CC_FfcDhCtxSetSchemeParams() argument
726 CHECK_AND_RETURN_ERROR(pDhUserCtx == NULL, CC_FFCDH_INVALID_CONTEXT_PTR_ERROR); in CC_FfcDhCtxSetSchemeParams()
728 CHECK_AND_RETURN_ERROR(pDhUserCtx == NULL, CC_FFCDH_INVALID_CONTEXT_PTR_ERROR); in CC_FfcDhCtxSetSchemeParams()
[all …]