Searched refs:rr (Results 1 - 3 of 3) sorted by relevance

/openwrt/package/network/services/ead/src/tinysrp/
H A Dbn_mul.c66 BIGNUM *rr; local
93 if ((rr = BN_CTX_get(ctx)) == NULL) goto err;
96 rr = r;
97 rr->neg=a->neg^b->neg;
108 if (bn_wexpand(rr,8) == NULL) goto err;
109 rr->top=8;
110 bn_mul_comba4(rr->d,a->d,b->d);
116 if (bn_wexpand(rr,16) == NULL) goto err;
117 rr->top=16;
118 bn_mul_comba8(rr
140 BN_ULONG *rr; local
[all...]
H A Dbn_sqr.c69 BIGNUM *tmp,*rr; local
84 rr=(a != r) ? r : BN_CTX_get(ctx);
89 if (bn_wexpand(rr,max+1) == NULL) goto err;
96 bn_sqr_normal(rr->d,a->d,4,t);
98 bn_sqr_comba4(rr->d,a->d);
105 bn_sqr_normal(rr->d,a->d,8,t);
107 bn_sqr_comba8(rr->d,a->d);
113 bn_sqr_normal(rr->d,a->d,al,tmp->d);
116 rr->top=max;
117 if ((max > 0) && (rr
[all...]
H A Dt_conf.c504 int BN_mod_exp_mont(BIGNUM *rr, BIGNUM *a, const BIGNUM *p, argument
525 BN_one(rr);
629 if (!BN_from_montgomery(rr,r,mont,ctx)) goto err;

Completed in 34 milliseconds