Home
last modified time | relevance | path

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

/trusted-firmware-m-3.5.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/cc3x_sym/api/
Dmbedtls_cc_poly.c18 mbedtls_poly_mac macRes) in mbedtls_poly() argument
27 if ((macRes == NULL) || in mbedtls_poly()
34 rc = PolyMacCalc(pKey, NULL, 0, pDataIn, dataInSize, macRes, false); in mbedtls_poly()
Dmbedtls_cc_chacha_poly.c26 mbedtls_poly_mac macRes) in mbedtls_chacha_poly() argument
45 (macRes == NULL) || in mbedtls_chacha_poly()
88 CC_PalMemCopy(macRes, polyMac, sizeof(polyMac)); in mbedtls_chacha_poly()
93 if (CC_PalMemCmp(macRes, polyMac, sizeof(polyMac)) != 0) { in mbedtls_chacha_poly()
/trusted-firmware-m-3.5.0/lib/ext/cryptocell-312-runtime/codesafe/src/mbedtls_api/
Dpoly1305_alt.c78 mbedtls_poly_mac macRes; in mbedtls_poly1305_mac() local
90 rc = PolyMacCalc(pKey, NULL, 0, input, ilen, macRes, false); in mbedtls_poly1305_mac()
95 CC_PalMemCopy(mac, (unsigned char *)macRes, sizeof(mbedtls_poly_mac)); in mbedtls_poly1305_mac()
/trusted-firmware-m-3.5.0/lib/ext/cryptocell-312-runtime/shared/include/crypto_api/cc3x/
Dmbedtls_cc_chacha_poly.h54 …mbedtls_poly_mac macRes /*!< [in/out] A pointer to the MAC result buf…
Dmbedtls_cc_poly.h65 mbedtls_poly_mac macRes /*!< [in/out] A pointer to the MAC-result buffer.*/
/trusted-firmware-m-3.5.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/pki/poly/
Dpoly.c378 static void PolyMacCalc_finalize(mbedtls_poly_mac macRes) in PolyMacCalc_finalize() argument
384 PkaCopyDataFromPkaReg(macRes, CC_POLY_MAC_SIZE_IN_WORDS, ACC_REG); in PolyMacCalc_finalize()
394 mbedtls_poly_mac macRes, in PolyMacCalc() argument
402 if ((key == NULL) || (macRes == NULL)) { in PolyMacCalc()
453 PolyMacCalc_finalize(macRes); in PolyMacCalc()
Dpoly.h83 mbedtls_poly_mac macRes,