Home
last modified time | relevance | path

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

/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/cc3x_sym/driver/
Dsrp_driver.c20 #define REMOVE_LEADING_BYTE_ZEROS(origPubKey, origSize, pPubKey, pubKeySize) {\ argument
27 pubKeySize = origSize-i; \
496 size_t pubKeySize; in SRP_UserProofCalc2() local
579 REMOVE_LEADING_BYTE_ZEROS((uint8_t *)userPubKeyA, modSize, pPubKey, pubKeySize); in SRP_UserProofCalc2()
580 rc = mbedtls_md_update(md_ctx, (uint8_t *)pPubKey, pubKeySize); in SRP_UserProofCalc2()
585 REMOVE_LEADING_BYTE_ZEROS((uint8_t *)hostPubKeyB, modSize, pPubKey, pubKeySize); in SRP_UserProofCalc2()
586 rc = mbedtls_md_update(md_ctx, (uint8_t *)pPubKey, pubKeySize); in SRP_UserProofCalc2()
624 size_t pubKeySize; in SRP_HostProofCalc() local
652 …EROS((uint8_t *)userPubKeyA, CALC_FULL_BYTES(pCtx->groupParam.modSizeInBits), pPubKey, pubKeySize); in SRP_HostProofCalc()
653 rc = mbedtls_md_update(&hash_ctx, (uint8_t *)pPubKey, pubKeySize); in SRP_HostProofCalc()