Home
last modified time | relevance | path

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

/hal_infineon-latest/mtb-pdl-cat1/drivers/source/
Dcy_cryptolite_ecdsa.c534 cfContext->p_qx = eccBuffer->p_qx; in Cy_Cryptolite_ECC_Init()
614 if(cfContext->p_qx != NULL) in Cy_Cryptolite_ECC_Free()
616 Cy_Cryptolite_Vu_clr(cfContext->p_qx, VU_BITS_TO_WORDS(BIT_SIZE)); in Cy_Cryptolite_ECC_Free()
617 cfContext->p_qx = NULL; in Cy_Cryptolite_ECC_Free()
842 uint8_t *p_qx = cfContext->p_qx; in Cy_Cryptolite_ECC_VerifyHash() local
912 Cy_Cryptolite_Setnumber(p_qx, (uint8_t *)key->pubkey.x, bytesize); in Cy_Cryptolite_ECC_VerifyHash()
924 Cy_Cryptolite_EC_NistP_PointMul(base, cfContext, p_qx, p_qy, p_u2, p_o, (int)bitsize); in Cy_Cryptolite_ECC_VerifyHash()
932 Cy_Cryptolite_Setnumber(p_s, p_qx, bytesize); in Cy_Cryptolite_ECC_VerifyHash()
937 Cy_Cryptolite_EC_SubMod(base, cfContext, p_s, p_qx, p_gx); // (x2-x1) in Cy_Cryptolite_ECC_VerifyHash()
942 …Cy_Cryptolite_EC_SubMod(base, cfContext, p_s, p_s, p_qx); // s^2 - x1 - x2 which is Px m… in Cy_Cryptolite_ECC_VerifyHash()
Dcy_crypto_core_ecc_ecdsa.c381 uint32_t p_qx = 11U; in Cy_Crypto_Core_ECC_VerifyHash() local
487 tmpResult = CY_CRYPTO_VU_ALLOC_MEM (base, p_qx, bitsize); in Cy_Crypto_Core_ECC_VerifyHash()
502 CY_CRYPTO_VU_REG_BIT(p_qx) | CY_CRYPTO_VU_REG_BIT(p_qy); in Cy_Crypto_Core_ECC_VerifyHash()
593 Cy_Crypto_Core_Vu_SetMemValue (base, p_qx, (uint8_t const *)pubKeyXRemap, bitsize); in Cy_Crypto_Core_ECC_VerifyHash()
603 tmpResult = Cy_Crypto_Core_EC_NistP_PointMul(base, p_qx, p_qy, p_u2, p_o, bitsize); in Cy_Crypto_Core_ECC_VerifyHash()
612 CY_CRYPTO_VU_MOV(base, p_s, p_qx); in Cy_Crypto_Core_ECC_VerifyHash()
618 Cy_Crypto_Core_EC_SubMod(base, p_s, p_qx, p_gx); /* (x2-x1) */ in Cy_Crypto_Core_ECC_VerifyHash()
631 …Cy_Crypto_Core_EC_SubMod (base, p_s, p_s, p_qx); /* s^2 - x1 - x2 which is Px mod n … in Cy_Crypto_Core_ECC_VerifyHash()
/hal_infineon-latest/mtb-pdl-cat1/drivers/include/
Dcy_cryptolite_ecdsa.h141 CY_ALIGN(4) uint8_t p_qx[4*VU_BITS_TO_WORDS(BIT_SIZE)];
165 uint8_t *p_qx; member