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

  /external/openssl/crypto/bn/
bn_div.c 108 if (!BN_lshift(D,D,nm-nd)) goto end;
238 if (!(BN_lshift(sdiv,divisor,norm_shift))) goto err;
241 if (!(BN_lshift(snum,num,norm_shift))) goto err;
bn_mont.c 393 if (!BN_lshift(Ri,Ri,2*BN_BITS2)) goto err; /* R*Ri */
423 if (!BN_lshift(Ri,Ri,BN_BITS2)) goto err; /* R*Ri */
447 if (!BN_lshift(Ri,Ri,mont->ri)) goto err; /* R*Ri */
bn_mod.c 282 if (!BN_lshift(r, r, max_shift)) return 0;
bn_shift.c 135 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n)
bn_word.c 107 if (!BN_lshift(a, a, j))
bn_gcd.c 196 if (!BN_lshift(a,a,shifts)) goto err;
442 if (!BN_lshift(tmp,X,2)) goto err;
bntest.c 197 message(out,"BN_lshift (fixed)");
202 message(out,"BN_lshift");
429 BN_lshift(&a,&a,i);
567 BN_lshift(&a,&a,i);
    [all...]
bn.h 494 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n);
    [all...]
  /external/openssl/crypto/dsa/
dsa_gen.c 191 if (!BN_lshift(test,BN_value_one(),bits-1))
284 if (!BN_lshift(r0,r0,(qsize << 3)*k)) goto err;
  /external/openssh/
moduli.c 519 if (BN_lshift(p, q, 1) == 0)
520 fatal("BN_lshift failed");
sshconnect1.c 570 if (BN_lshift(key, key, 8) == 0)
571 fatal("ssh_kex: BN_lshift failed");
  /external/openssl/crypto/objects/
obj_dat.c 531 if (!BN_lshift(bl, bl, 7))
  /external/openssl/include/openssl/
bn.h 494 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n);
    [all...]
  /libcore/luni/src/main/native/
java_math_NativeBN.cpp 422 return (n >= 0) ? BN_lshift(r, a, n) : BN_rshift(r, a, -n);
  /external/openssl/crypto/ec/
ecp_smpl.c 333 if (!BN_lshift(tmp_1, tmp_2, 2)) goto err;
    [all...]

Completed in 306 milliseconds