Home | History | Annotate | Download | only in bn

Lines Matching defs:aa

256 	BIGNUM *aa;
277 aa = BN_CTX_get(ctx);
279 if(!aa || !val[0]) goto err;
285 if (!BN_copy(aa, m)) goto err;
286 aa->neg = 0;
287 if (BN_RECP_CTX_set(&recp,aa,ctx) <= 0) goto err;
305 if (!BN_mod_mul_reciprocal(aa,val[0],val[0],&recp,ctx))
312 aa,&recp,ctx))
390 const BIGNUM *aa;
437 aa= val[0];
440 aa=a;
441 if (BN_is_zero(aa))
447 if (!BN_to_montgomery(val[0],aa,mont,ctx)) goto err; /* 1 */