summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio/bio_meth.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Hide symbols in asn1 and biobeck2023-07-051-1/+19
| | | | ok jsing@
* Implement new-style OpenSSL BIO callbackstb2022-01-141-5/+3
| | | | | | | | | | This provides support for new-style BIO callbacks in BIO_{read,write,gets,puts}() and a helper function to work out whether it should call the new or the old style callback. It also adds a few typedefs and minor code cleanup as well as the BIO_{get,set}_callback_ex() from jsing, ok tb
* Add a new, mostly empty, bio_local.h and include it in the filestb2022-01-071-1/+3
| | | | | | that will need it in the upcoming bump. discussed with jsing
* Add const to the argument of the following callback getters:tb2018-06-021-9/+9
| | | | | | | | BIO_meth_get_callback_ctrl, BIO_meth_get_create, BIO_meth_get_ctrl, BIO_meth_get_destroy, BIO_meth_get_gets, BIO_meth_get_puts, BIO_meth_get_read, and BIO_meth_get_write. ok jsing
* whitespace nittb2018-02-201-2/+2
|
* Provide BIO_meth_{g,s}et_callback_ctrl()tb2018-02-201-1/+17
| | | | with & ok jsing
* Provide BIO_meth_get_{create,ctrl,destroy,gets,puts,read}()tb2018-02-201-1/+43
| | | | ok jsing
* Provide BIO_meth_set_gets().tb2018-02-181-1/+8
| | | | ok jsing
* Provide BIO_meth_{free,new}() and BIO_meth_set_{create,crtl,destroy}()tb2018-02-171-0/+82
and BIO_meth_set_{puts,read,write}(). ok jsing