Searched refs:tempx (Results 1 – 2 of 2) sorted by relevance
/net-tools-3.7.0/tinydtls-0.8.2/ecc/ |
D | testecc.c | 119 uint32_t tempx[8]; in addTest() local 122 ecc_ec_add(Tx, Ty, Sx, Sy, tempx, tempy); in addTest() 123 assert(ecc_isSame(tempx, resultAddx, arrayLength)); in addTest() 128 uint32_t tempx[8]; in doubleTest() local 131 ecc_ec_double(Sx, Sy, tempx, tempy); in doubleTest() 132 assert(ecc_isSame(tempx, resultDoublex, arrayLength)); in doubleTest() 137 uint32_t tempx[8]; in multTest() local 140 ecc_ec_mult(Sx, Sy, secret, tempx, tempy); in multTest() 141 assert(ecc_isSame(tempx, resultMultx, arrayLength)); in multTest() 146 uint32_t tempx[8]; in eccdhTest() local [all …]
|
D | ecc.c | 497 uint32_t tempx[8]; in ecc_ec_mult() local 502 ec_double(Qx, Qy, tempx, tempy); in ecc_ec_mult() 503 copy(tempx, Qx,arrayLength); in ecc_ec_mult() 506 ec_add(Qx, Qy, px, py, tempx, tempy); //eccAdd in ecc_ec_mult() 507 copy(tempx, Qx,arrayLength); in ecc_ec_mult()
|