/freebsd/crypto/openssl/doc/man3/ |
H A D | ASN1_INTEGER_get_int64.pod | 6 …int64, ASN1_INTEGER_get, ASN1_INTEGER_set_int64, ASN1_INTEGER_set, BN_to_ASN1_INTEGER, ASN1_INTEGE… 22 ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai); 62 BN_to_ASN1_INTEGER() converts B<BIGNUM> I<bn> to an B<ASN1_INTEGER>. If I<ai> 106 BN_to_ASN1_INTEGER() and BN_to_ASN1_ENUMERATED() return an B<ASN1_INTEGER> or
|
/freebsd/crypto/openssl/crypto/dsa/ |
H A D | dsa_ameth.c | 116 pubint = BN_to_ASN1_INTEGER(dsa->pub_key, NULL); in dsa_pub_encode() 190 prkey = BN_to_ASN1_INTEGER(pkey->pkey.dsa->priv_key, NULL); in dsa_priv_encode()
|
/freebsd/crypto/openssl/crypto/dh/ |
H A D | dh_ameth.c | 134 pub_key = BN_to_ASN1_INTEGER(dh->pub_key, NULL); in dh_pub_encode() 199 prkey = BN_to_ASN1_INTEGER(pkey->pkey.dh->priv_key, NULL); in dh_priv_encode()
|
/freebsd/crypto/openssl/providers/implementations/encode_decode/ |
H A D | encode_key2any.c | 480 if ((pub_key = BN_to_ASN1_INTEGER(bn, NULL)) == NULL) { in dh_spki_pub_to_der() 501 if ((priv_key = BN_to_ASN1_INTEGER(bn, NULL)) == NULL) { in dh_pki_priv_to_der() 595 if ((pub_key = BN_to_ASN1_INTEGER(bn, NULL)) == NULL) { in dsa_spki_pub_to_der() 616 if ((priv_key = BN_to_ASN1_INTEGER(bn, NULL)) == NULL) { in dsa_pki_priv_to_der()
|
/freebsd/crypto/openssl/crypto/ec/ |
H A D | ec_asn1.c | 217 field->p.prime = BN_to_ASN1_INTEGER(tmp, NULL); in ec_asn1_group2fieldid() 443 ret->order = BN_to_ASN1_INTEGER(tmp, orig = ret->order); in EC_GROUP_get_ecparameters() 453 ret->cofactor = BN_to_ASN1_INTEGER(tmp, orig = ret->cofactor); in EC_GROUP_get_ecparameters()
|
/freebsd/crypto/openssl/crypto/cms/ |
H A D | cms_dh.c | 226 pubk = BN_to_ASN1_INTEGER(bn_pub_key, NULL); in dh_cms_encrypt()
|
/freebsd/crypto/openssl/crypto/x509/ |
H A D | v3_asid.c | 318 BN_to_ASN1_INTEGER(bn, orig = a_max_plus_one)) == NULL) { in ASIdentifierChoice_is_canonical() 439 BN_to_ASN1_INTEGER(bn, orig = a_max_plus_one)) == NULL) { in ASIdentifierChoice_canonize()
|
H A D | v3_utl.c | 238 aint = BN_to_ASN1_INTEGER(bn, NULL); in s2i_ASN1_INTEGER()
|
/freebsd/crypto/openssl/crypto/asn1/ |
H A D | a_int.c | 564 ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai) in BN_to_ASN1_INTEGER() function
|
/freebsd/crypto/openssl/apps/ |
H A D | x509.c | 927 || (ser = BN_to_ASN1_INTEGER(bnser, NULL)) == NULL) { in x509_main() 1119 bs = BN_to_ASN1_INTEGER(serial, NULL); in x509_load_serial()
|
H A D | ca.c | 1240 tmpser = BN_to_ASN1_INTEGER(serial, NULL); in ca_main() 1275 tmpser = BN_to_ASN1_INTEGER(crlnumber, NULL); in ca_main() 1703 if (BN_to_ASN1_INTEGER(serial, X509_get_serialNumber(ret)) == NULL) in do_body()
|
H A D | ts.c | 809 if ((serial = BN_to_ASN1_INTEGER(bn, NULL)) == NULL) in next_serial()
|
/freebsd/crypto/openssl/apps/lib/ |
H A D | apps.c | 1549 if ((ai = BN_to_ASN1_INTEGER(serial, NULL)) == NULL) { in save_serial() 1623 if (ai && !BN_to_ASN1_INTEGER(btmp, ai)) in rand_serial()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | asn1.h | 875 ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai);
|
H A D | asn1.h.in | 708 ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai);
|
/freebsd/secure/lib/libcrypto/ |
H A D | Version.map | 579 BN_to_ASN1_INTEGER;
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | Makefile | 1071 MLINKS+= ASN1_INTEGER_get_int64.3 BN_to_ASN1_INTEGER.3
|
/freebsd/crypto/openssl/util/ |
H A D | libcrypto.num | 1074 BN_to_ASN1_INTEGER 1102 3_0_0 EXIST::FUNCTION:
|
/freebsd/crypto/openssl/ |
H A D | CHANGES.md | 14102 * Fixes to BN_to_ASN1_INTEGER when bn is zero. This would previously
|