Home
last modified time | relevance | path

Searched refs:tmp_y (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()
375 ret = fp_copy(&tmp_y, &(in->y)); EG(ret, err1); in eddsa_encode_point()
376 ret = fp_sqr(&tmp_y, &tmp_y); EG(ret, err1); in eddsa_encode_point()
377 ret = fp_sub(&tmp_y, &tmp_y, &tmp_x); EG(ret, err1); in eddsa_encode_point()
379 ret = fp_inv(&tmp_y, &tmp_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()
384 ret = fp_inv(&tmp_y, alpha_edwards); EG(ret, err1); in eddsa_encode_point()
385 ret = fp_mul(&tmp_x, &tmp_x, &tmp_y); EG(ret, err1); in eddsa_encode_point()
390 ret = fp_copy(&tmp_y, &(in->y)); EG(ret, err1); in eddsa_encode_point()
[all …]