Home | History | Annotate | Download | only in fuzz

Lines Matching refs:b1

25 static BIGNUM *b1;
33 b1 = BN_new();
50 /* s1 and s2 will be the signs for b1 and b2. */
57 /* We are going to split the buffer in two, sizes l1 and l2, giving b1 and
72 OPENSSL_assert(BN_bin2bn(buf, l1, b1) == b1);
73 BN_set_negative(b1, s1);
83 OPENSSL_assert(BN_div(b3, b4, b1, b2, ctx));
84 if (BN_is_zero(b1))
86 else if (BN_is_negative(b1))
95 success = success && BN_cmp(b5, b1) == 0;
97 BN_print_fp(stdout, b1);
107 printf("%d %d %d %d %d %d %d\n", BN_is_negative(b1),
112 BN_cmp(b5, b1));
125 BN_free(b1);