HomeSort by relevance Sort by last modified time
    Searched refs:BN_is_zero (Results 1 - 25 of 31) sorted by null

1 2

  /external/boringssl/src/crypto/bn_extra/
convert.c 92 if (BN_is_zero(bn)) {
226 if (!BN_is_zero(ret)) {
255 if (BN_is_zero(a)) {
265 while (!BN_is_zero(copy)) {
271 const int add_leading_zeros = !BN_is_zero(copy);
331 if (*orig_in == '-' && !BN_is_zero(*outp)) {
346 if (BN_is_zero(a) && BIO_write(bp, "0", 1) != 1) {
  /external/boringssl/src/crypto/fipsmodule/bn/
sqrt.c 94 if (BN_is_zero(a) || BN_is_one(a)) {
251 if (BN_is_zero(y)) {
318 if (BN_is_zero(t)) /* special case: p = 2^e + 1 */
323 if (BN_is_zero(t)) {
335 if (BN_is_zero(x)) {
441 if (BN_is_zero(in)) {
montgomery_inv.c 36 assert(!BN_is_zero(n));
166 assert(!BN_is_zero(n));
jacobi.c 106 if (BN_is_zero(A)) {
add.c 174 if (BN_is_zero(a)) {
182 if (!BN_is_zero(a)) {
338 if (BN_is_zero(a)) {
bn.c 231 if (BN_is_zero(bn)) {
305 if (sign && !BN_is_zero(bn)) {
bn_test.cc 368 if (!BN_is_zero(square.get())) {
596 if (BN_is_zero(mod_sqrt.get())) {
782 EXPECT_TRUE(BN_is_zero(bn.get()));
797 EXPECT_TRUE(BN_is_zero(bn.get()));
810 EXPECT_TRUE(BN_is_zero(bn.get()));
825 EXPECT_TRUE(BN_is_zero(bn.get()));
845 EXPECT_TRUE(BN_is_zero(bn.get()));
875 EXPECT_TRUE(BN_is_zero(bn.get()));
927 EXPECT_TRUE(BN_is_zero(bn.get()))
    [all...]
gcd.c 122 while (!BN_is_zero(b)) {
279 while (!BN_is_zero(B)) {
515 while (!BN_is_zero(B)) {
bytes.c 210 if (BN_is_zero(in)) {
cmp.c 199 int BN_is_zero(const BIGNUM *bn) {
div.c 208 if (BN_is_zero(divisor)) {
376 if (!BN_is_zero(rm)) {
692 if (BN_is_zero(r) || !r->neg) {
shift.c 196 if (BN_is_zero(a)) {
montgomery.c 177 if (BN_is_zero(mod)) {
exponentiation.c 353 r->neg = BN_is_zero(r) ? 0 : m->neg;
471 if (BN_is_zero(val[0])) {
624 if (BN_is_zero(aa)) {
    [all...]
  /external/boringssl/src/crypto/fipsmodule/ecdsa/
ecdsa.c 157 if (BN_is_zero(sig->r) || BN_is_negative(sig->r) ||
158 BN_ucmp(sig->r, order) >= 0 || BN_is_zero(sig->s) ||
276 } while (BN_is_zero(k));
319 } while (BN_is_zero(r));
419 if (BN_is_zero(s)) {
  /external/boringssl/src/crypto/fipsmodule/ec/
simple.c 473 if (BN_is_zero(n5)) {
474 if (BN_is_zero(n6)) {
691 if (EC_POINT_is_at_infinity(group, point) || BN_is_zero(&point->Y)) {
700 return BN_is_zero(&point->Z);
1003 if (!BN_is_zero(&points[0]->Z)) {
1014 if (!BN_is_zero(&points[i]->Z)) {
1053 if (BN_is_zero(&points[i]->Z)) {
1069 if (!BN_is_zero(&points[0]->Z) && !BN_copy(&points[0]->Z, tmp)) {
1077 if (!BN_is_zero(&p->Z)) {
oct.c 371 if (BN_is_zero(y)) {
wnaf.c 102 if (BN_is_zero(scalar)) {
p256-x86_64_test.cc 164 if (BN_is_zero(z.get())) {
  /external/tpm2/
RSAKeySieve.c 281 if(BN_is_zero(bnB))
861 if(!BN_is_zero(bnQ))
881 if(BN_is_zero(bnQ))
908 || BN_is_zero(bnT))
CpriRSA.c 200 if (BN_is_zero(bnP))
    [all...]
CpriECC.c     [all...]
  /external/boringssl/src/crypto/dsa/
dsa.c 575 if (BN_is_zero(r) || BN_is_zero(s)) {
647 if (BN_is_zero(sig->r) || BN_is_negative(sig->r) ||
652 if (BN_is_zero(sig->s) || BN_is_negative(sig->s) ||
  /external/boringssl/src/crypto/asn1/
a_int.c 427 if (BN_is_negative(bn) && !BN_is_zero(bn))
  /external/boringssl/src/crypto/evp/
print.c 76 if (BN_is_zero(num)) {

Completed in 260 milliseconds

1 2