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

  /external/openssl/crypto/bn/
bn_mod.c 159 int BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, BN_CTX *ctx)
166 /* BN_mod_sub variant that may be used if both a and b are non-negative
bn.h 473 int BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, BN_CTX *ctx);
    [all...]
  /external/openssl/crypto/srp/
srp_lib.c 276 if (!BN_mod_sub(tmp,B,tmp2,N,bn_ctx))
  /external/openssh/
jpake.c 402 if (BN_mod_sub(tmp, grp->q, tmp, grp->q, bn_ctx) != 1)
403 fatal("%s: BN_mod_sub (tmp = q - tmp mod q)", __func__);
schnorr.c 187 if (BN_mod_sub(r, v, tmp, grp_q, bn_ctx) == -1) {
  /external/openssl/crypto/jpake/
jpake.c 206 BN_mod_sub(p->zkpx.b, r, t, ctx->p.q, ctx->ctx);
  /external/openssl/include/openssl/
bn.h 473 int BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, BN_CTX *ctx);
    [all...]

Completed in 145 milliseconds