Home | History | Annotate | Download | only in ec

Lines Matching refs:lh

555 	BIGNUM *lh, *y2;
577 lh = BN_CTX_get(ctx);
578 if (lh == NULL) goto err;
585 if (!BN_GF2m_add(lh, &point->X, &group->a)) goto err;
586 if (!field_mul(group, lh, lh, &point->X, ctx)) goto err;
587 if (!BN_GF2m_add(lh, lh, &point->Y)) goto err;
588 if (!field_mul(group, lh, lh, &point->X, ctx)) goto err;
589 if (!BN_GF2m_add(lh, lh, &group->b)) goto err;
591 if (!BN_GF2m_add(lh, lh, y2)) goto err;
592 ret = BN_is_zero(lh);