Searched refs:rsaKgOutParams (Results 1 – 4 of 4) sorted by relevance
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/rsa/ |
D | cc_rsa_kg.c | 39 extern rsaKgInternalDataStruct_t rsaKgOutParams; 251 … CC_CommonReverseMemcpy(rsaKgOutParams.nModulus, (uint8_t*)pCcPubKey->n, KeySize/CC_BITS_IN_BYTE); in CC_RsaKgKeyPairGenerate() 252 …CC_CommonReverseMemcpy(rsaKgOutParams.pPrim, (uint8_t*)KeyGenData_ptr->KGData.p, KeySize/(2*CC_BIT… in CC_RsaKgKeyPairGenerate() 253 …CC_CommonReverseMemcpy(rsaKgOutParams.qPrim, (uint8_t*)KeyGenData_ptr->KGData.q, KeySize/(2*CC_BIT… in CC_RsaKgKeyPairGenerate() 254 …CC_CommonReverseMemcpy(rsaKgOutParams.dPrivExponent, (uint8_t*)pCcPrivKey->PriveKeyDb.NonCrt.d, Ke… in CC_RsaKgKeyPairGenerate() 415 … CC_CommonReverseMemcpy(rsaKgOutParams.nModulus, (uint8_t*)pCcPubKey->n, KeySize/CC_BITS_IN_BYTE); in CC_RsaKgKeyPairCrtGenerate() 416 …CC_CommonReverseMemcpy(rsaKgOutParams.pPrim, (uint8_t*)KeyGenData_ptr->KGData.p,KeySize/(2*CC_BITS… in CC_RsaKgKeyPairCrtGenerate() 417 …CC_CommonReverseMemcpy(rsaKgOutParams.qPrim, (uint8_t*)KeyGenData_ptr->KGData.q, KeySize/(2*CC_BIT… in CC_RsaKgKeyPairCrtGenerate() 418 CC_CommonReverseMemcpy(rsaKgOutParams.dPrivExponent, NULL, KeySize/CC_BITS_IN_BYTE); in CC_RsaKgKeyPairCrtGenerate()
|
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/pki/rsa/ |
D | rsa.h | 58 rsaKgInternalDataStruct_t rsaKgOutParams; variable
|
D | rsa_genkey.c | 67 extern rsaKgInternalDataStruct_t rsaKgOutParams; 1802 rsaKgOutParams.pP_PrimeInt = &prim1Int; in RsaGenPandQ() 1803 rsaKgOutParams.pQ_PrimeInt = &prim2Int; in RsaGenPandQ() 1905 rsaKgOutParams.pP_PrimeInt = &prim2Int; in RsaGenPandQ() 1906 rsaKgOutParams.pQ_PrimeInt = &prim1Int; in RsaGenPandQ() 1926 rsaKgOutParams.pP_PrimeInt = &prim2Int; in RsaGenPandQ() 1927 rsaKgOutParams.pQ_PrimeInt = &prim1Int; in RsaGenPandQ()
|
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/codesafe/src/mbedtls_api/ |
D | rsa_alt.c | 511 CC_CommonReverseMemcpy( rsaKgOutParams.nModulus, (uint8_t*)pCcPubKey->n, keySizeBytes ); in mbedtls_rsa_gen_key() 512 … CC_CommonReverseMemcpy( rsaKgOutParams.pPrim, (uint8_t*)pKeyGenData->KGData.p, keySizeBytes/2 ); in mbedtls_rsa_gen_key() 513 … CC_CommonReverseMemcpy( rsaKgOutParams.qPrim, (uint8_t*)pKeyGenData->KGData.q, keySizeBytes/2 ); in mbedtls_rsa_gen_key() 514 …CC_CommonReverseMemcpy( rsaKgOutParams.dPrivExponent, (uint8_t*)pCcPrivKey->PriveKeyDb.NonCrt.d, k… in mbedtls_rsa_gen_key()
|