Lines Matching defs:corebiometh
208 BIO_METHOD *corebiometh = NULL;
210 corebiometh = BIO_meth_new(BIO_TYPE_CORE_TO_PROV, "BIO to Core filter");
211 if (corebiometh == NULL
212 || !BIO_meth_set_write_ex(corebiometh, bio_core_write_ex)
213 || !BIO_meth_set_read_ex(corebiometh, bio_core_read_ex)
214 || !BIO_meth_set_puts(corebiometh, bio_core_puts)
215 || !BIO_meth_set_gets(corebiometh, bio_core_gets)
216 || !BIO_meth_set_ctrl(corebiometh, bio_core_ctrl)
217 || !BIO_meth_set_create(corebiometh, bio_core_new)
218 || !BIO_meth_set_destroy(corebiometh, bio_core_free)) {
219 BIO_meth_free(corebiometh);
223 return corebiometh;
229 BIO_METHOD *corebiometh = ossl_prov_ctx_get0_core_bio_method(provctx);
231 if (corebiometh == NULL)
234 if ((outbio = BIO_new(corebiometh)) == NULL)