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

  /external/openssl/crypto/bn/
bn_mod.c 127 int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx)
144 return BN_nnmod(r, r, m, ctx);
162 return BN_nnmod(r, r, m, ctx);
194 if (!BN_nnmod(r,t,m,ctx)) goto err;
206 /* r->neg == 0, thus we don't need BN_nnmod */
215 return BN_nnmod(r, r, m, ctx);
236 if (!BN_nnmod(r, a, m, ctx)) return 0;
bn_kron.c 173 err = !BN_nnmod(B, B, A, ctx);
bn_gcd.c 246 if (!BN_nnmod(B, B, A, ctx)) goto err;
486 if (!BN_nnmod(R,Y,n,ctx)) goto err;
547 if (!BN_nnmod(B, pB, A, ctx)) goto err;
640 if (!BN_nnmod(R,Y,n,ctx)) goto err;
bn_sqrt.c 128 if (!BN_nnmod(A, a, p, ctx)) goto end;
289 if (!BN_nnmod(t, A, p, ctx)) goto end;
expspeed.c 266 if (!BN_nnmod(a,a,c,ctx)) goto err;
267 if (!BN_nnmod(b,b,c,ctx)) goto err;
bn_nist.c 367 return BN_nnmod(r, a, field, ctx);
453 return BN_nnmod(r, a, field, ctx);
563 return BN_nnmod(r, a, field, ctx);
686 return BN_nnmod(r, a, field, ctx);
794 return BN_nnmod(r, a, field, ctx);
bn_exp.c 282 if (!BN_nnmod(val[0],a,m,ctx)) goto err; /* 1 */
423 if (!BN_nnmod(val[0],a,m,ctx))
742 /* We can use BN_mod and do not need BN_nnmod because our
905 if (!BN_nnmod(val[0],a,m,ctx)) goto err; /* 1 */
bntest.c 749 BN_nnmod(&a,&a,&n,ctx);
750 BN_nnmod(&b,&b,&n,ctx);
    [all...]
bn.h 452 int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx);
    [all...]
  /libcore/luni/src/main/java/java/math/
NativeBN.java 141 public static native boolean BN_nnmod(int r, int a, int m);
142 // int BN_nnmod(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx);
BigInt.java 354 Check(NativeBN.BN_nnmod(r.bignum, a.bignum, m.bignum));
  /external/openssl/crypto/ecdsa/
ecs_ossl.c 171 if (!BN_nnmod(r, X, order, ctx))
459 if (!BN_nnmod(u1, X, order, ctx))
  /external/openssl/crypto/ec/
ecp_smpl.c 198 if (!BN_nnmod(tmp_a, a, p, ctx)) goto err;
205 if (!BN_nnmod(&group->b, b, p, ctx)) goto err;
409 if (!BN_nnmod(&point->X, x, &group->field, ctx)) goto err;
418 if (!BN_nnmod(&point->Y, y, &group->field, ctx)) goto err;
429 if (!BN_nnmod(&point->Z, z, &group->field, ctx)) goto err;
669 if (!BN_nnmod(x, x_, &group->field,ctx)) goto err;
    [all...]
  /libcore/luni/src/main/native/
NativeBN.cpp 488 return BN_nnmod(r, a, m, ctx.get());
540 NATIVE_METHOD(NativeBN, BN_nnmod, "(III)Z"),
  /external/openssl/include/openssl/
bn.h 452 int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx);
    [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 432 int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx);

Completed in 174 milliseconds