Symbol: ASN1_INTEGER_to_BN
crypto/libressl/apps/openssl/apps.c
1219
ret = ASN1_INTEGER_to_BN(ai, NULL);
crypto/libressl/apps/openssl/ca.c
2462
bn = ASN1_INTEGER_to_BN(X509_get_serialNumber(x509), NULL);
crypto/libressl/apps/openssl/ocsp.c
1305
bn = ASN1_INTEGER_to_BN(ser, NULL);
crypto/libressl/apps/openssl/ts.c
1021
if ((bn = ASN1_INTEGER_to_BN(serial, NULL)) == NULL)
crypto/libressl/apps/openssl/x509.c
978
bnser = ASN1_INTEGER_to_BN(ser, NULL);
crypto/libressl/crypto/asn1/x_bignum.c
181
if ((bn = ASN1_INTEGER_to_BN(aint, NULL)) == NULL)
crypto/libressl/crypto/dh/dh_ameth.c
113
if (!(dh->pub_key = ASN1_INTEGER_to_BN(public_key, NULL))) {
crypto/libressl/crypto/dh/dh_ameth.c
213
if (!(dh->priv_key = ASN1_INTEGER_to_BN(privkey, NULL))) {
crypto/libressl/crypto/dsa/dsa_ameth.c
116
if (!(dsa->pub_key = ASN1_INTEGER_to_BN(public_key, NULL))) {
crypto/libressl/crypto/dsa/dsa_ameth.c
215
if (!(dsa->priv_key = ASN1_INTEGER_to_BN(privkey, NULL))) {
crypto/libressl/crypto/ec/ec_asn1.c
1156
p = ASN1_INTEGER_to_BN(params->fieldID->p.prime, NULL);
crypto/libressl/crypto/ec/ec_asn1.c
1210
if ((a = ASN1_INTEGER_to_BN(params->order, a)) == NULL) {
crypto/libressl/crypto/ec/ec_asn1.c
1226
} else if ((b = ASN1_INTEGER_to_BN(params->cofactor, b)) == NULL) {
crypto/libressl/crypto/gost/gostr341001_ameth.c
450
ret = ((pk_num = ASN1_INTEGER_to_BN(priv_key, NULL)) != NULL);
crypto/libressl/crypto/ts/ts_lib.c
82
ASN1_INTEGER_to_BN(num, &num_bn);
crypto/libressl/crypto/x509/x509_asid.c
544
ASN1_INTEGER_to_BN(a_max, bn) == NULL ||
crypto/libressl/crypto/x509/x509_asid.c
673
ASN1_INTEGER_to_BN(a_max, bn) == NULL ||
crypto/libressl/crypto/x509/x509_utl.c
209
if ((bntmp = ASN1_INTEGER_to_BN(a, NULL)) == NULL ||
crypto/libressl/include/openssl/asn1.h
755
BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn);