Bugzilla Bug 334679: removed a duplicate line in ec_GF2m_validate_point.

r=douglas.stebila.
This commit is contained in:
wtchang%redhat.com 2006-05-05 23:08:50 +00:00
Родитель a47966c468
Коммит 836e0c0b9c
1 изменённых файлов: 0 добавлений и 1 удалений

Просмотреть файл

@ -312,7 +312,6 @@ ec_GF2m_validate_point(const mp_int *px, const mp_int *py, const ECGroup *group)
/* left-hand side: y^2 + x*y */
MP_CHECKOK( group->meth->field_sqr(&pyt, &accl, group->meth) );
MP_CHECKOK( group->meth->field_mul(&pxt, &pyt, &tmp, group->meth) );
MP_CHECKOK( group->meth->field_mul(&pxt, &pyt, &tmp, group->meth) );
MP_CHECKOK( group->meth->field_add(&accl, &tmp, &accl, group->meth) );
/* right-hand side: x^3 + a*x^2 + b */
MP_CHECKOK( group->meth->field_sqr(&pxt, &tmp, group->meth) );