HomeSort by relevance Sort by last modified time
    Searched refs:BN_mod_mul_montgomery (Results 1 - 8 of 8) sorted by null

  /external/openssl/crypto/bn/
bn_exp2.c 190 if (!BN_mod_mul_montgomery(d,val1[0],val1[0],mont,ctx)) goto err;
196 !BN_mod_mul_montgomery(val1[i],val1[i-1],
223 if (!BN_mod_mul_montgomery(d,val2[0],val2[0],mont,ctx)) goto err;
229 !BN_mod_mul_montgomery(val2[i],val2[i-1],
248 if (!BN_mod_mul_montgomery(r,r,r,mont,ctx))
289 if (!BN_mod_mul_montgomery(r,r,val1[wvalue1>>1],mont,ctx))
298 if (!BN_mod_mul_montgomery(r,r,val2[wvalue2>>1],mont,ctx))
bn_exp.c 440 if (!BN_mod_mul_montgomery(d,val[0],val[0],mont,ctx)) goto err; /* 2 */
445 !BN_mod_mul_montgomery(val[i],val[i-1],
465 if (!BN_mod_mul_montgomery(r,r,r,mont,ctx))
496 if (!BN_mod_mul_montgomery(r,r,r,mont,ctx))
501 if (!BN_mod_mul_montgomery(r,r,val[wvalue>>1],mont,ctx))
668 if (!BN_mod_mul_montgomery(computeTemp,am,computeTemp,mont,ctx))
698 if (!BN_mod_mul_montgomery(r,r,r,mont,ctx)) goto err;
706 if (!BN_mod_mul_montgomery(r,r,computeTemp,mont,ctx)) goto err;
820 if (!BN_mod_mul_montgomery(r, r, r, mont, ctx)) goto err;
bn.h 545 int BN_mod_mul_montgomery(BIGNUM *r,const BIGNUM *a,const BIGNUM *b,
547 #define BN_to_montgomery(r,a,mont,ctx) BN_mod_mul_montgomery(\
    [all...]
bn_mont.c 129 int BN_mod_mul_montgomery(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
bntest.c 755 BN_mod_mul_montgomery(&c,&A,&B,mont,ctx);/**/
    [all...]
  /external/openssl/crypto/ec/
ecp_mont.c 265 return BN_mod_mul_montgomery(r, a, b, group->field_data1, ctx);
277 return BN_mod_mul_montgomery(r, a, a, group->field_data1, ctx);
  /external/openssl/include/openssl/
bn.h 545 int BN_mod_mul_montgomery(BIGNUM *r,const BIGNUM *a,const BIGNUM *b,
547 #define BN_to_montgomery(r,a,mont,ctx) BN_mod_mul_montgomery(\
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/openssl/
bn.h 524 int BN_mod_mul_montgomery(BIGNUM *r,const BIGNUM *a,const BIGNUM *b,
526 #define BN_to_montgomery(r,a,mont,ctx) BN_mod_mul_montgomery(\

Completed in 57 milliseconds