Symbol: BN_dec2bn
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
277
if (!BN_dec2bn(bn, p))
crypto/openssl/crypto/x509/v3_utl.c
229
ret = BN_dec2bn(&bn, value);
crypto/openssl/include/openssl/bn.h
346
int BN_dec2bn(BIGNUM **a, const char *str);
crypto/openssl/test/bntest.c
3100
|| !TEST_true(BN_dec2bn(&base, test->base))
crypto/openssl/test/bntest.c
3101
|| !TEST_true(BN_dec2bn(&exponent, test->exp))
crypto/openssl/test/bntest.c
3102
|| !TEST_true(BN_dec2bn(&modulo, test->mod)))
crypto/openssl/test/bntest.c
3134
|| !TEST_true(BN_dec2bn(&base, test->base))
crypto/openssl/test/bntest.c
3135
|| !TEST_true(BN_dec2bn(&exponent, test->exp))
crypto/openssl/test/bntest.c
3136
|| !TEST_true(BN_dec2bn(&modulo, test->mod)))
crypto/openssl/test/bntest.c
3216
if (!TEST_true(BN_dec2bn(&a, "5193817943")))
crypto/openssl/test/bntest.c
3218
if (!TEST_true(BN_dec2bn(&b, "3259122431")))
crypto/openssl/test/bntest.c
3252
if (!TEST_true(BN_dec2bn(&a, "15")))
crypto/openssl/test/bntest.c
3254
if (!TEST_true(BN_dec2bn(&b, "10")))
crypto/openssl/test/bntest.c
3256
if (!TEST_true(BN_dec2bn(&c, "39")))
crypto/openssl/test/bntest.c
93
return BN_dec2bn(out, in);
crypto/openssl/test/ectest.c
1082
if (!TEST_true(BN_dec2bn(&x, "0"))
crypto/openssl/test/ectest.c
1083
|| !TEST_true(BN_dec2bn(&y, "1"))
crypto/openssl/test/test_test.c
317
if (!TEST(1, TEST_int_eq(BN_dec2bn(&a, "0"), 1))
crypto/openssl/test/test_test.c
333
|| !TEST(1, TEST_int_eq(BN_dec2bn(&b, "1"), 1))
crypto/openssl/test/test_test.c
346
|| !TEST(1, TEST_int_eq(BN_dec2bn(&c, "-334739439"), 10))
lib/libmp/mpasbn.c
135
BN_ERRCHECK(msg, BN_dec2bn(&mp->bn, s));
usr.bin/factor/factor.c
395
n = is_hex_str(p) ? BN_hex2bn(val, p) : BN_dec2bn(val, p);
usr.bin/factor/factor.c
92
static int BN_dec2bn(BIGNUM **, const char *);