⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bio.pod

📁 Openssl 0.9.8e 最新版OpenSSL
💻 POD
字号:
=pod=head1 NAMEbio - I/O abstraction=head1 SYNOPSIS #include <openssl/bio.h>TBA=head1 DESCRIPTIONA BIO is an I/O abstraction, it hides many of the underlying I/Odetails from an application. If an application uses a BIO for itsI/O it can transparently handle SSL connections, unencrypted networkconnections and file I/O.There are two type of BIO, a source/sink BIO and a filter BIO.As its name implies a source/sink BIO is a source and/or sink of data,examples include a socket BIO and a file BIO.A filter BIO takes data from one BIO and passes it through toanother, or the application. The data may be left unmodified (forexample a message digest BIO) or translated (for example anencryption BIO). The effect of a filter BIO may change accordingto the I/O operation it is performing: for example an encryptionBIO will encrypt data if it is being written to and decrypt dataif it is being read from.BIOs can be joined together to form a chain (a single BIO is a chainwith one component). A chain normally consist of one source/sinkBIO and one or more filter BIOs. Data read from or written to thefirst BIO then traverses the chain to the end (normally a source/sinkBIO).=head1 SEE ALSOL<BIO_ctrl(3)|BIO_ctrl(3)>,L<BIO_f_base64(3)|BIO_f_base64(3)>, L<BIO_f_buffer(3)|BIO_f_buffer(3)>,L<BIO_f_cipher(3)|BIO_f_cipher(3)>, L<BIO_f_md(3)|BIO_f_md(3)>,L<BIO_f_null(3)|BIO_f_null(3)>, L<BIO_f_ssl(3)|BIO_f_ssl(3)>,L<BIO_find_type(3)|BIO_find_type(3)>, L<BIO_new(3)|BIO_new(3)>,L<BIO_new_bio_pair(3)|BIO_new_bio_pair(3)>,L<BIO_push(3)|BIO_push(3)>, L<BIO_read(3)|BIO_read(3)>,L<BIO_s_accept(3)|BIO_s_accept(3)>, L<BIO_s_bio(3)|BIO_s_bio(3)>,L<BIO_s_connect(3)|BIO_s_connect(3)>, L<BIO_s_fd(3)|BIO_s_fd(3)>,L<BIO_s_file(3)|BIO_s_file(3)>, L<BIO_s_mem(3)|BIO_s_mem(3)>,L<BIO_s_null(3)|BIO_s_null(3)>, L<BIO_s_socket(3)|BIO_s_socket(3)>,L<BIO_set_callback(3)|BIO_set_callback(3)>,L<BIO_should_retry(3)|BIO_should_retry(3)>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -