Lines Matching refs:pubKey
1078 cy_en_crypto_status_t Cy_Crypto_Rsa_Proc(cy_stc_crypto_rsa_pub_key_t const *pubKey, in Cy_Crypto_Rsa_Proc() argument
1091 cfContext->key = pubKey; in Cy_Crypto_Rsa_Proc()
1097 if(NULL != pubKey->barretCoefPtr) in Cy_Crypto_Rsa_Proc()
1100 …SCB_CleanDCache_by_Addr((volatile void *)pubKey->barretCoefPtr,(int32_t)(pubKey->moduloLength+1u)); in Cy_Crypto_Rsa_Proc()
1102 if(NULL != pubKey->inverseModuloPtr) in Cy_Crypto_Rsa_Proc()
1104 … SCB_CleanDCache_by_Addr((volatile void *)pubKey->inverseModuloPtr,(int32_t)pubKey->moduloLength); in Cy_Crypto_Rsa_Proc()
1106 if(NULL != pubKey->rBarPtr) in Cy_Crypto_Rsa_Proc()
1108 SCB_CleanDCache_by_Addr((volatile void *)pubKey->rBarPtr,(int32_t)pubKey->moduloLength); in Cy_Crypto_Rsa_Proc()
1110 SCB_CleanDCache_by_Addr((volatile void *)pubKey->moduloPtr,(int32_t)pubKey->moduloLength); in Cy_Crypto_Rsa_Proc()
1111 SCB_CleanDCache_by_Addr((volatile void *)pubKey->pubExpPtr,(int32_t)pubKey->pubExpLength); in Cy_Crypto_Rsa_Proc()
1123 cy_en_crypto_status_t Cy_Crypto_Rsa_CalcCoefs(cy_stc_crypto_rsa_pub_key_t const *pubKey, in Cy_Crypto_Rsa_CalcCoefs() argument
1133 cfContext->key = pubKey; in Cy_Crypto_Rsa_CalcCoefs()
1135 SCB_CleanDCache_by_Addr((volatile void *)pubKey->moduloPtr,(int32_t)pubKey->moduloLength); in Cy_Crypto_Rsa_CalcCoefs()
1136 SCB_CleanDCache_by_Addr((volatile void *)pubKey->pubExpPtr,(int32_t)pubKey->pubExpLength); in Cy_Crypto_Rsa_CalcCoefs()
1141 …SCB_InvalidateDCache_by_Addr((volatile void *)pubKey->barretCoefPtr,(int32_t)(pubKey->moduloLength… in Cy_Crypto_Rsa_CalcCoefs()
1142 …SCB_InvalidateDCache_by_Addr((volatile void *)pubKey->inverseModuloPtr,(int32_t)pubKey->moduloLeng… in Cy_Crypto_Rsa_CalcCoefs()
1143 … SCB_InvalidateDCache_by_Addr((volatile void *)pubKey->rBarPtr,(int32_t)pubKey->moduloLength); in Cy_Crypto_Rsa_CalcCoefs()