Home
last modified time | relevance | path

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

/hal_infineon-latest/mtb-pdl-cat1/drivers/source/
Dcy_cryptolite_ecdsa.c532 cfContext->p_gx = eccBuffer->p_gx; in Cy_Cryptolite_ECC_Init()
604 if(cfContext->p_gx != NULL) in Cy_Cryptolite_ECC_Free()
606 Cy_Cryptolite_Vu_clr(cfContext->p_gx, VU_BITS_TO_WORDS(BIT_SIZE)); in Cy_Cryptolite_ECC_Free()
607 cfContext->p_gx = NULL; in Cy_Cryptolite_ECC_Free()
840 uint8_t *p_gx = cfContext->p_gx; in Cy_Cryptolite_ECC_VerifyHash() local
909 Cy_Cryptolite_Setnumber(p_gx, (uint8_t *) eccDp->Gx, bytesize); in Cy_Cryptolite_ECC_VerifyHash()
917 … Cy_Cryptolite_EC_NistP_PointMul(base, cfContext, p_gx, p_gy, p_u1, p_o, (int)bitsize); 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()
941 Cy_Cryptolite_EC_SubMod(base, cfContext, p_s, p_s, p_gx); // s^2 - x1 in Cy_Cryptolite_ECC_VerifyHash()
Dcy_cryptolite_ecc_key_gen.c257 uint8_t *p_gx = cfContext->p_gx; in Cy_Cryptolite_ECC_MakePublicKey() local
275 Cy_Cryptolite_Setnumber(p_gx, (uint8_t *) eccDp->Gx, bytesize); in Cy_Cryptolite_ECC_MakePublicKey()
280 Cy_Cryptolite_EC_NistP_PointMul(base, cfContext, p_gx, p_gy, p_u1, p_o, (int)bitsize); in Cy_Cryptolite_ECC_MakePublicKey()
282 Cy_Cryptolite_Setnumber((uint8_t *)publicKey->pubkey.x, (uint8_t *) p_gx, bytesize); in Cy_Cryptolite_ECC_MakePublicKey()
Dcy_crypto_core_ecc_ecdsa.c379 uint32_t p_gx = 9U; in Cy_Crypto_Core_ECC_VerifyHash() local
475 tmpResult = CY_CRYPTO_VU_ALLOC_MEM (base, p_gx, bitsize); in Cy_Crypto_Core_ECC_VerifyHash()
501 CY_CRYPTO_VU_REG_BIT(p_gx) | CY_CRYPTO_VU_REG_BIT(p_gy) | in Cy_Crypto_Core_ECC_VerifyHash()
589 …Cy_Crypto_Core_Vu_SetMemValue (base, p_gx, (uint8_t const *)CY_REMAP_ADDRESS_FOR_CRYPTO(eccDp->Gx)… in Cy_Crypto_Core_ECC_VerifyHash()
597 tmpResult = Cy_Crypto_Core_EC_NistP_PointMul(base, p_gx, p_gy, p_u1, p_o, bitsize); 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()
630 Cy_Crypto_Core_EC_SubMod (base, p_s, p_s, p_gx); /* s^2 - x1 */ in Cy_Crypto_Core_ECC_VerifyHash()
/hal_infineon-latest/mtb-pdl-cat1/drivers/include/
Dcy_cryptolite_ecdsa.h139 CY_ALIGN(4) uint8_t p_gx[4*VU_BITS_TO_WORDS(BIT_SIZE)];
163 uint8_t *p_gx; member