Symbol: BN_hex2bn
crypto/openssh/dh.c
132
if (BN_hex2bn(&dhg->g, gen) == 0) {
crypto/openssh/dh.c
136
if (BN_hex2bn(&dhg->p, prime) == 0) {
crypto/openssh/dh.c
320
if (BN_hex2bn(&dh_p, modulus) == 0 ||
crypto/openssh/dh.c
321
BN_hex2bn(&dh_g, gen) == 0)
crypto/openssh/moduli.c
669
if (BN_hex2bn(&a, cp) == 0)
crypto/openssh/moduli.c
686
if (BN_hex2bn(&a, cp) == 0)
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
77
ASSERT_INT_GT(BN_hex2bn(&bnn, b), 0); \
crypto/openssh/regress/unittests/sshkey/common.c
81
ASSERT_INT_NE(BN_hex2bn(&ret, (const char *)sshbuf_ptr(buf)), 0);
crypto/openssh/ssh-keygen.c
3016
if (BN_hex2bn(&start, opts[i]+6) == 0)
crypto/openssl/apps/ca.c
1235
if (!BN_hex2bn(&serial, pp[DB_serial]))
crypto/openssl/apps/prime.c
147
r = hex ? BN_hex2bn(&bn, argv[0]) : BN_dec2bn(&bn, argv[0]);
crypto/openssl/crypto/bn/bn_conv.c
274
if (!BN_hex2bn(bn, p + 2))
crypto/openssl/crypto/params_from_text.c
51
r = BN_hex2bn(tmpbn, value);
crypto/openssl/crypto/x509/v3_utl.c
227
ret = BN_hex2bn(&bn, value);
crypto/openssl/include/openssl/bn.h
345
int BN_hex2bn(BIGNUM **a, const char *str);
crypto/openssl/test/bntest.c
1741
BN_hex2bn(&a, "050505050505");
crypto/openssl/test/bntest.c
1742
BN_hex2bn(&b, "02");
crypto/openssl/test/bntest.c
1743
BN_hex2bn(&c,
crypto/openssl/test/bntest.c
503
if (!(TEST_true(BN_hex2bn(&a,
crypto/openssl/test/bntest.c
508
&& TEST_true(BN_hex2bn(&b,
crypto/openssl/test/bntest.c
513
&& TEST_true(BN_hex2bn(&n,
crypto/openssl/test/bntest.c
586
if (!(TEST_true(BN_hex2bn(&a,
crypto/openssl/test/bntest.c
590
&& TEST_true(BN_hex2bn(&n,
crypto/openssl/test/bntest.c
598
if (!(TEST_true(BN_hex2bn(&a,
crypto/openssl/test/bntest.c
603
&& TEST_true(BN_hex2bn(&b,
crypto/openssl/test/bntest.c
608
&& TEST_true(BN_hex2bn(&n,
crypto/openssl/test/bntest.c
623
if (!(TEST_true(BN_hex2bn(&a,
crypto/openssl/test/bntest.c
628
&& TEST_true(BN_hex2bn(&b,
crypto/openssl/test/bntest.c
633
&& TEST_true(BN_hex2bn(&n,
crypto/openssl/test/bntest.c
75
int ret = BN_hex2bn(out, bigstring);
crypto/openssl/test/bntest.c
87
return BN_hex2bn(out, in);
crypto/openssl/test/ec_internal_test.c
276
if (!TEST_int_gt(BN_hex2bn(&x1, x1str), 0)
crypto/openssl/test/ec_internal_test.c
277
|| !TEST_int_gt(BN_hex2bn(&y1, p521m1), 0)
crypto/openssl/test/ec_internal_test.c
278
|| !TEST_int_gt(BN_hex2bn(&z1, p521m1), 0)
crypto/openssl/test/ec_internal_test.c
279
|| !TEST_int_gt(BN_hex2bn(&k, "02"), 0)
crypto/openssl/test/ecdsatest.c
115
|| !TEST_true(BN_hex2bn(&r, r_in))
crypto/openssl/test/ecdsatest.c
116
|| !TEST_true(BN_hex2bn(&s, s_in)))
crypto/openssl/test/ecdsatest.c
46
|| !TEST_true(BN_hex2bn(&tmp, numbers[fbytes_counter]))
crypto/openssl/test/ecstresstest.c
88
if (!TEST_true(BN_hex2bn(&expected_result, kP256DefaultResult))
crypto/openssl/test/ectest.c
1154
BN_hex2bn(&secp521r1_field,
crypto/openssl/test/ectest.c
1161
BN_hex2bn(&sect163r2_field,
crypto/openssl/test/ectest.c
1311
|| !TEST_true(BN_hex2bn(&p, test->p))
crypto/openssl/test/ectest.c
1313
|| !TEST_true(BN_hex2bn(&a, test->a))
crypto/openssl/test/ectest.c
1314
|| !TEST_true(BN_hex2bn(&b, test->b))
crypto/openssl/test/ectest.c
1320
|| !TEST_true(BN_hex2bn(&x, test->Qx))
crypto/openssl/test/ectest.c
1321
|| !TEST_true(BN_hex2bn(&y, test->Qy))
crypto/openssl/test/ectest.c
1331
|| !TEST_true(BN_hex2bn(&x, test->Gx))
crypto/openssl/test/ectest.c
1332
|| !TEST_true(BN_hex2bn(&y, test->Gy))
crypto/openssl/test/ectest.c
1334
|| !TEST_true(BN_hex2bn(&order, test->order))
crypto/openssl/test/ectest.c
1340
if (!TEST_true(BN_hex2bn(&n, test->d)))
crypto/openssl/test/ectest.c
177
|| !TEST_true(BN_hex2bn(&p, "17"))
crypto/openssl/test/ectest.c
178
|| !TEST_true(BN_hex2bn(&a, "1"))
crypto/openssl/test/ectest.c
179
|| !TEST_true(BN_hex2bn(&b, "1"))
crypto/openssl/test/ectest.c
203
|| !TEST_true(BN_hex2bn(&x, "D"))
crypto/openssl/test/ectest.c
2628
|| !TEST_int_gt(BN_hex2bn(&cf, "12bc94785251297abfafddf1565100da"), 0)
crypto/openssl/test/ectest.c
278
|| !TEST_true(BN_hex2bn(&p, "FFFFFFFF"
crypto/openssl/test/ectest.c
281
|| !TEST_true(BN_hex2bn(&a, "FFFFFFFF"
crypto/openssl/test/ectest.c
283
|| !TEST_true(BN_hex2bn(&b, "1C97BEFC"
crypto/openssl/test/ectest.c
286
|| !TEST_true(BN_hex2bn(&x, "4A96B568"
crypto/openssl/test/ectest.c
288
|| !TEST_true(BN_hex2bn(&y, "23a62855"
crypto/openssl/test/ectest.c
299
|| !TEST_true(BN_hex2bn(&z, "0100000000"
crypto/openssl/test/ectest.c
308
if (!TEST_true(BN_hex2bn(&z, "23a62855"
crypto/openssl/test/ectest.c
316
|| !TEST_true(BN_hex2bn(&p, "FFFFFFFFFFFFFFFF"
crypto/openssl/test/ectest.c
319
|| !TEST_true(BN_hex2bn(&a, "FFFFFFFFFFFFFFFF"
crypto/openssl/test/ectest.c
321
|| !TEST_true(BN_hex2bn(&b, "64210519E59C80E7"
crypto/openssl/test/ectest.c
324
|| !TEST_true(BN_hex2bn(&x, "188DA80EB03090F6"
crypto/openssl/test/ectest.c
328
|| !TEST_true(BN_hex2bn(&z, "FFFFFFFFFFFFFFFF"
crypto/openssl/test/ectest.c
338
if (!TEST_true(BN_hex2bn(&z, "07192B95FFC8DA78"
crypto/openssl/test/ectest.c
353
|| !TEST_true(BN_hex2bn(&p, "FFFFFFFFFFFFFFFFFFFFFFFF"
crypto/openssl/test/ectest.c
356
|| !TEST_true(BN_hex2bn(&a, "FFFFFFFFFFFFFFFFFFFFFFFF"
crypto/openssl/test/ectest.c
358
|| !TEST_true(BN_hex2bn(&b, "B4050A850C04B3ABF5413256"
crypto/openssl/test/ectest.c
361
|| !TEST_true(BN_hex2bn(&x, "B70E0CBD6BB4BF7F321390B9"
crypto/openssl/test/ectest.c
365
|| !TEST_true(BN_hex2bn(&z, "FFFFFFFFFFFFFFFFFFFFFFFF"
crypto/openssl/test/ectest.c
375
if (!TEST_true(BN_hex2bn(&z, "BD376388B5F723FB4C22DFE6"
crypto/openssl/test/ectest.c
390
|| !TEST_true(BN_hex2bn(&p, "FFFFFFFF000000010000000000000000"
crypto/openssl/test/ectest.c
393
|| !TEST_true(BN_hex2bn(&a, "FFFFFFFF000000010000000000000000"
crypto/openssl/test/ectest.c
395
|| !TEST_true(BN_hex2bn(&b, "5AC635D8AA3A93E7B3EBBD55769886BC"
crypto/openssl/test/ectest.c
399
|| !TEST_true(BN_hex2bn(&x, "6B17D1F2E12C4247F8BCE6E563A440F2"
crypto/openssl/test/ectest.c
403
|| !TEST_true(BN_hex2bn(&z, "FFFFFFFF00000000FFFFFFFFFFFFFFFF"
crypto/openssl/test/ectest.c
413
if (!TEST_true(BN_hex2bn(&z, "4FE342E2FE1A7F9B8EE7EB4A7C0F9E16"
crypto/openssl/test/ectest.c
428
|| !TEST_true(BN_hex2bn(&p, "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
crypto/openssl/test/ectest.c
432
|| !TEST_true(BN_hex2bn(&a, "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
crypto/openssl/test/ectest.c
435
|| !TEST_true(BN_hex2bn(&b, "B3312FA7E23EE7E4988E056BE3F82D19"
crypto/openssl/test/ectest.c
440
|| !TEST_true(BN_hex2bn(&x, "AA87CA22BE8B05378EB1C71EF320AD74"
crypto/openssl/test/ectest.c
445
|| !TEST_true(BN_hex2bn(&z, "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
crypto/openssl/test/ectest.c
456
if (!TEST_true(BN_hex2bn(&z, "3617DE4A96262C6F5D9E98BF9292DC29"
crypto/openssl/test/ectest.c
471
|| !TEST_true(BN_hex2bn(&p, "1FF"
crypto/openssl/test/ectest.c
477
|| !TEST_true(BN_hex2bn(&a, "1FF"
crypto/openssl/test/ectest.c
482
|| !TEST_true(BN_hex2bn(&b, "051"
crypto/openssl/test/ectest.c
488
|| !TEST_true(BN_hex2bn(&x, "C6"
crypto/openssl/test/ectest.c
495
|| !TEST_true(BN_hex2bn(&z, "1FF"
crypto/openssl/test/ectest.c
508
if (!TEST_true(BN_hex2bn(&z, "118"
crypto/openssl/test/ectest.c
789
|| !TEST_true(BN_hex2bn(&p, test->p))
crypto/openssl/test/ectest.c
790
|| !TEST_true(BN_hex2bn(&a, test->a))
crypto/openssl/test/ectest.c
791
|| !TEST_true(BN_hex2bn(&b, test->b))
crypto/openssl/test/ectest.c
796
|| !TEST_true(BN_hex2bn(&x, test->x))
crypto/openssl/test/ectest.c
797
|| !TEST_true(BN_hex2bn(&y, test->y))
crypto/openssl/test/ectest.c
812
|| !TEST_true(BN_hex2bn(&z, test->order))
crypto/openssl/test/ectest.c
813
|| !TEST_true(BN_hex2bn(&cof, test->cof))
crypto/openssl/test/ectest.c
821
if (!TEST_true(BN_hex2bn(&z, test->y))
crypto/openssl/test/ectest.c
832
|| !TEST_true(BN_hex2bn(&z, test->order))
crypto/openssl/test/ectest.c
833
|| !TEST_true(BN_hex2bn(&cof, test->cof))
crypto/openssl/test/ectest.c
937
|| !TEST_true(BN_hex2bn(&p, "13"))
crypto/openssl/test/ectest.c
938
|| !TEST_true(BN_hex2bn(&a, "3"))
crypto/openssl/test/ectest.c
939
|| !TEST_true(BN_hex2bn(&b, "1")))
crypto/openssl/test/ectest.c
968
|| !TEST_true(BN_hex2bn(&x, "6"))
crypto/openssl/test/ectest.c
973
|| !TEST_true(BN_hex2bn(&y, "8"))
crypto/openssl/test/params_test.c
108
if (!TEST_true(BN_hex2bn(&obj->p3, p3_init)))
crypto/openssl/test/params_test.c
336
if (!BN_hex2bn(&app_p3, app_p3_init)
crypto/openssl/test/params_test.c
447
|| !TEST_true(BN_hex2bn(&verify_p3, p3_init))) {
crypto/openssl/test/params_test.c
504
if (!TEST_true(BN_hex2bn(&verify_p3, app_p3_init))) {
crypto/openssl/test/sm2_internal_test.c
104
if (!TEST_true(BN_hex2bn(&g_x, x_hex))
crypto/openssl/test/sm2_internal_test.c
105
|| !TEST_true(BN_hex2bn(&g_y, y_hex))
crypto/openssl/test/sm2_internal_test.c
110
if (!TEST_true(BN_hex2bn(&order, order_hex))
crypto/openssl/test/sm2_internal_test.c
111
|| !TEST_true(BN_hex2bn(&cof, cof_hex))
crypto/openssl/test/sm2_internal_test.c
152
|| !TEST_true(BN_hex2bn(&priv, privkey_hex)))
crypto/openssl/test/sm2_internal_test.c
319
if (!TEST_true(BN_hex2bn(&priv, privkey_hex)))
crypto/openssl/test/sm2_internal_test.c
347
if (!TEST_true(BN_hex2bn(&r, r_hex))
crypto/openssl/test/sm2_internal_test.c
348
|| !TEST_true(BN_hex2bn(&s, s_hex))
crypto/openssl/test/sm2_internal_test.c
91
if (!TEST_true(BN_hex2bn(&p, p_hex))
crypto/openssl/test/sm2_internal_test.c
92
|| !TEST_true(BN_hex2bn(&a, a_hex))
crypto/openssl/test/sm2_internal_test.c
93
|| !TEST_true(BN_hex2bn(&b, b_hex)))
crypto/openssl/test/srptest.c
125
if (!TEST_true(BN_hex2bn(&tmp, hexbn)))
crypto/openssl/test/srptest.c
154
BN_hex2bn(&s, "BEB25379D1A8581EB5A727673A2441EE");
crypto/openssl/test/srptest.c
171
BN_hex2bn(&b, "E487CB59D31AC550471E81F00F6928E01DDA08E974A004F49E61F5D1"
crypto/openssl/test/srptest.c
190
BN_hex2bn(&a, "60975527035CF2AD1989806F0407210BC81EDC04E2762A56AFD529DD"
crypto/openssl/test/ssl_old_test.c
2937
ret = BN_hex2bn(&bn, pskkey);
crypto/openssl/test/test_test.c
424
r = TEST_true(BN_hex2bn(&a, as))
crypto/openssl/test/test_test.c
425
&& TEST_true(BN_hex2bn(&b, bs))
crypto/openssl/test/test_test.c
426
&& TEST_true(BN_hex2bn(&c, cs))
crypto/openssl/test/test_test.c
427
&& TEST_true(BN_hex2bn(&d, ds))
crypto/openssl/test/test_test.c
527
&& !TEST_true(BN_hex2bn(&b, bn_output_tests[n])))
lib/libmp/mpasbn.c
620
BN_ERRCHECK(msg, BN_hex2bn(&mp->bn, s));
usr.bin/factor/factor.c
393
n = BN_hex2bn(val, ++p);
usr.bin/factor/factor.c
395
n = is_hex_str(p) ? BN_hex2bn(val, p) : BN_dec2bn(val, p);
usr.bin/factor/factor.c
93
static int BN_hex2bn(BIGNUM **, const char *);