/third_party/openssl/doc/man3/ |
D | ASN1_INTEGER_get_int64.pod | 6 …get, ASN1_INTEGER_set_int64, ASN1_INTEGER_set, BN_to_ASN1_INTEGER, ASN1_INTEGER_to_BN, ASN1_ENUMER… 23 BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn); 66 ASN1_INTEGER_to_BN() converts ASN1_INTEGER I<ai> into a B<BIGNUM>. If I<bn> is 110 ASN1_INTEGER_to_BN() and ASN1_ENUMERATED_to_BN() return a B<BIGNUM> structure
|
D | BN_bn2bin.pod | 112 L<ASN1_INTEGER_to_BN(3)>,
|
/third_party/openssl/crypto/ts/ |
D | ts_lib.c | 25 num_bn = ASN1_INTEGER_to_BN(num, NULL); in TS_ASN1_INTEGER_print_bio()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
D | asn1.rs | 49 pub fn ASN1_INTEGER_to_BN(ai: *const ASN1_INTEGER, bn: *mut BIGNUM) -> *mut BIGNUM; in ASN1_INTEGER_to_BN() function
|
/third_party/openssl/crypto/dsa/ |
D | dsa_backend.c | 155 || !ASN1_INTEGER_to_BN(privkey, dsa_privkey)) { in ossl_dsa_key_from_pkcs8()
|
D | dsa_ameth.c | 70 if ((dsa->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)) == NULL) { in dsa_pub_decode()
|
/third_party/openssl/crypto/dh/ |
D | dh_backend.c | 228 || !ASN1_INTEGER_to_BN(privkey, privkey_bn)) { in ossl_dh_key_from_pkcs8()
|
D | dh_ameth.c | 96 if ((dh->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)) == NULL) { in dh_pub_decode()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
D | asn1.rs | 522 #[corresponds(ASN1_INTEGER_to_BN)] 525 cvt_p(ffi::ASN1_INTEGER_to_BN(self.as_ptr(), ptr::null_mut())) in to_bn()
|
/third_party/openssl/crypto/ec/ |
D | ec_asn1.c | 659 p = ASN1_INTEGER_to_BN(params->fieldID->p.prime, NULL); in EC_GROUP_new_from_ecparameters() 733 if (ASN1_INTEGER_to_BN(params->order, a) == NULL) { in EC_GROUP_new_from_ecparameters() 750 } else if (ASN1_INTEGER_to_BN(params->cofactor, b) == NULL) { in EC_GROUP_new_from_ecparameters()
|
/third_party/openssl/crypto/x509/ |
D | v3_asid.c | 302 ASN1_INTEGER_to_BN(a_max, bn) == NULL || in ASIdentifierChoice_is_canonical() 423 ASN1_INTEGER_to_BN(a_max, bn) == NULL || in ASIdentifierChoice_canonize()
|
D | v3_ncons.c | 463 bn = ASN1_INTEGER_to_BN(sub->minimum, NULL); in nc_minmax_valid()
|
D | v3_utl.c | 187 if ((bntmp = ASN1_INTEGER_to_BN(a, NULL)) == NULL in i2s_ASN1_INTEGER()
|
/third_party/openssl/crypto/cms/ |
D | cms_dh.c | 57 if ((bnpub = ASN1_INTEGER_to_BN(public_key, NULL)) == NULL) in dh_cms_set_peerkey()
|
/third_party/fsverity-utils/lib/ |
D | sign_digest.c | 131 serial = ASN1_INTEGER_to_BN(X509_get_serialNumber(cert), NULL); in sign_pkcs7()
|
/third_party/openssl/crypto/asn1/ |
D | a_int.c | 569 BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn) in ASN1_INTEGER_to_BN() function
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | asn1.h | 660 BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn);
|
/third_party/openssl/apps/ |
D | ts.c | 800 if ((bn = ASN1_INTEGER_to_BN(serial, NULL)) == NULL) in next_serial()
|
D | x509.c | 922 BIGNUM *bnser = ASN1_INTEGER_to_BN(X509_get0_serialNumber(x), NULL); in x509_main()
|
D | ocsp.c | 1181 bn = ASN1_INTEGER_to_BN(ser, NULL); in lookup_serial()
|
D | ca.c | 2121 bn = ASN1_INTEGER_to_BN(X509_get0_serialNumber(x509), NULL); in do_revoke()
|
/third_party/openssl/crypto/store/ |
D | store_lib.c | 353 && (number = ASN1_INTEGER_to_BN(search->serial, NULL)) != NULL in OSSL_STORE_find()
|
/third_party/node/src/ |
D | node_crypto_common.cc | 432 BignumPointer bn(ASN1_INTEGER_to_BN(serial_number, nullptr)); in GetSerialNumber()
|
/third_party/openssl/include/openssl/ |
D | asn1.h.in | 709 BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn);
|
/third_party/nghttp2/src/ |
D | shrpx_tls.cc | 2607 if (!ASN1_INTEGER_to_BN(sn, bn) || BN_num_bytes(bn) > 20) { in get_x509_serial()
|