Home
last modified time | relevance | path

Searched refs:tempy (Results 1 – 2 of 2) sorted by relevance

/net-tools-3.7.0/tinydtls-0.8.2/ecc/
Dtestecc.c120 uint32_t tempy[8]; in addTest() local
122 ecc_ec_add(Tx, Ty, Sx, Sy, tempx, tempy); in addTest()
124 assert(ecc_isSame(tempy, resultAddy, arrayLength)); in addTest()
129 uint32_t tempy[8]; in doubleTest() local
131 ecc_ec_double(Sx, Sy, tempx, tempy); in doubleTest()
133 assert(ecc_isSame(tempy, resultDoubley, arrayLength)); in doubleTest()
138 uint32_t tempy[8]; in multTest() local
140 ecc_ec_mult(Sx, Sy, secret, tempx, tempy); in multTest()
142 assert(ecc_isSame(tempy, resultMulty, arrayLength)); in multTest()
147 uint32_t tempy[8]; in eccdhTest() local
[all …]
Decc.c498 uint32_t tempy[8]; in ecc_ec_mult() local
502 ec_double(Qx, Qy, tempx, tempy); in ecc_ec_mult()
504 copy(tempy, Qy,arrayLength); in ecc_ec_mult()
506 ec_add(Qx, Qy, px, py, tempx, tempy); //eccAdd in ecc_ec_mult()
508 copy(tempy, Qy,arrayLength); in ecc_ec_mult()