Home
last modified time | relevance | path

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

/freebsd/crypto/libecc/src/sig/
H A Deddsa.c369 fp tmp_x, tmp_y, y1; in eddsa_encode_point() local
370 tmp_x.magic = tmp_y.magic = y1.magic = WORD(0); in eddsa_encode_point()
373 ret = fp_copy(&tmp_x, &(in->x)); EG(ret, err1); in eddsa_encode_point()
374 ret = fp_sqr(&tmp_x, &tmp_x); EG(ret, err1); in eddsa_encode_point()
377 ret = fp_sub(&tmp_y, &tmp_y, &tmp_x); EG(ret, err1); in eddsa_encode_point()
380 ret = fp_set_word_value(&tmp_x, WORD(4)); EG(ret, err1); in eddsa_encode_point()
381 ret = fp_mul(&tmp_x, &tmp_x, &(in->x)); EG(ret, err1); in eddsa_encode_point()
382 ret = fp_mul(&tmp_x, &tmp_x, &(in->y)); EG(ret, err1); in eddsa_encode_point()
383 ret = fp_mul(&tmp_x, &tmp_x, &tmp_y); EG(ret, err1); in eddsa_encode_point()
385 ret = fp_mul(&tmp_x, &tmp_x, &tmp_y); EG(ret, err1); in eddsa_encode_point()
[all …]