Searched refs:tempD (Results 1 – 1 of 1) sorted by relevance
/net-tools-3.5.0/tinydtls-0.8.2/ecc/ |
D | ecc.c | 415 uint32_t tempD[16]; in ec_double() local 423 fieldMult(px, px, tempD, arrayLength); in ec_double() 424 fieldModP(tempA, tempD); in ec_double() 429 fieldMult(tempC, tempB, tempD, arrayLength); in ec_double() 430 fieldModP(tempA, tempD);//tempA = 3*(qx^2-1) in ec_double() 433 fieldMult(tempA, tempC, tempD, arrayLength); //tempB = lambda = (3*(qx^2-1))/(2*qy) in ec_double() 434 fieldModP(tempB, tempD); in ec_double() 436 fieldMult(tempB, tempB, tempD, arrayLength); //tempC = lambda^2 in ec_double() 437 fieldModP(tempC, tempD); in ec_double() 442 fieldMult(tempB, tempA, tempD, arrayLength); //tempC = lambda * (qx-dx) in ec_double() [all …]
|