Symbol: ASN1_INTEGER_to_BN
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
353
bn = ASN1_INTEGER_to_BN(intval, NULL);
crypto/openssl/apps/ca.c
2146
bn = ASN1_INTEGER_to_BN(X509_get0_serialNumber(x509), NULL);
crypto/openssl/apps/lib/apps.c
1529
ret = ASN1_INTEGER_to_BN(ai, NULL);
crypto/openssl/apps/ocsp.c
1238
bn = ASN1_INTEGER_to_BN(ser, NULL);
crypto/openssl/apps/ts.c
828
if ((bn = ASN1_INTEGER_to_BN(serial, NULL)) == NULL)
crypto/openssl/apps/x509.c
1022
BIGNUM *bnser = ASN1_INTEGER_to_BN(X509_get0_serialNumber(x), NULL);
crypto/openssl/crypto/cms/cms_dh.c
58
if ((bnpub = ASN1_INTEGER_to_BN(public_key, NULL)) == NULL)
crypto/openssl/crypto/dh/dh_ameth.c
96
if ((dh->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)) == NULL) {
crypto/openssl/crypto/dh/dh_backend.c
221
|| !ASN1_INTEGER_to_BN(privkey, privkey_bn)) {
crypto/openssl/crypto/dsa/dsa_ameth.c
70
if ((dsa->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)) == NULL) {
crypto/openssl/crypto/dsa/dsa_backend.c
153
|| !ASN1_INTEGER_to_BN(privkey, dsa_privkey)) {
crypto/openssl/crypto/ec/ec_asn1.c
646
p = ASN1_INTEGER_to_BN(params->fieldID->p.prime, NULL);
crypto/openssl/crypto/ec/ec_asn1.c
717
if (ASN1_INTEGER_to_BN(params->order, a) == NULL) {
crypto/openssl/crypto/ec/ec_asn1.c
734
} else if (ASN1_INTEGER_to_BN(params->cofactor, b) == NULL) {
crypto/openssl/crypto/store/store_lib.c
372
&& (number = ASN1_INTEGER_to_BN(search->serial, NULL)) != NULL
crypto/openssl/crypto/ts/ts_lib.c
25
num_bn = ASN1_INTEGER_to_BN(num, NULL);
crypto/openssl/crypto/x509/v3_asid.c
300
if ((bn == NULL && (bn = BN_new()) == NULL) || ASN1_INTEGER_to_BN(a_max, bn) == NULL || !BN_add_word(bn, 1)) {
crypto/openssl/crypto/x509/v3_asid.c
413
if ((bn == NULL && (bn = BN_new()) == NULL) || ASN1_INTEGER_to_BN(a_max, bn) == NULL || !BN_add_word(bn, 1)) {
crypto/openssl/crypto/x509/v3_ncons.c
492
bn = ASN1_INTEGER_to_BN(sub->minimum, NULL);
crypto/openssl/crypto/x509/v3_utl.c
188
if ((bntmp = ASN1_INTEGER_to_BN(a, NULL)) == NULL)
crypto/openssl/include/openssl/asn1.h
872
BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn);