Lines Matching defs:asn_bio
61 BIO *asn_bio = NULL;
71 asn_bio = BIO_new(BIO_f_asn1());
72 if (ndef_aux == NULL || asn_bio == NULL)
76 out = BIO_push(asn_bio, out);
79 pop_bio = asn_bio;
81 if (BIO_asn1_set_prefix(asn_bio, ndef_prefix, ndef_prefix_free) <= 0
82 || BIO_asn1_set_suffix(asn_bio, ndef_suffix, ndef_suffix_free) <= 0
83 || BIO_ctrl(asn_bio, BIO_C_SET_EX_ARG, 0, ndef_aux) <= 0)
96 * The asn1_cb(), must not have mutated asn_bio on error, leaving it in the
101 * ndef_aux is now owned by asn_bio so we must not free it in the err
124 BIO_free(asn_bio);