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

  /external/openssl/crypto/bn/
bn_add.c 87 if (!BN_usub(r,b,a)) return(0);
92 if (!BN_usub(r,a,b)) return(0);
166 int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
302 if (!BN_usub(r,b,a)) return(0);
307 if (!BN_usub(r,a,b)) return(0);
bn_recp.c 185 if (!BN_usub(r,m,b)) goto err;
197 if (!BN_usub(r,r,&(recp->N))) goto err;
bn_mod.c 154 return BN_usub(r, r, m);
bn_gcd.c 330 if (!BN_usub(B, B, A)) goto err;
337 if (!BN_usub(A, A, B)) goto err;
bn_div.c 115 if (!BN_usub(rem,rem,D)) goto end;
bn_mont.c 311 if (!BN_usub(ret,ret,&(mont->N))) goto err;
bn.h 451 int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
    [all...]
  /external/openssl/crypto/ec/
ecp_oct.c 179 if (!BN_usub(y, &group->field, y)) goto err;
ecp_smpl.c 930 return BN_usub(&point->Y, &group->field, &point->Y);
    [all...]
  /external/openssl/include/openssl/
bn.h 451 int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
    [all...]

Completed in 238 milliseconds