BIO_f_base64.pod (openssl-1.1.1o) | : | BIO_f_base64.pod (openssl-1.1.1p) | ||
---|---|---|---|---|
skipping to change at line 41 | skipping to change at line 41 | |||
This behavior can be changed with BIO_FLAGS_BASE64_NO_NL flag. | This behavior can be changed with BIO_FLAGS_BASE64_NO_NL flag. | |||
BIO_flush() on a base64 BIO that is being written through is | BIO_flush() on a base64 BIO that is being written through is | |||
used to signal that no more data is to be encoded: this is used | used to signal that no more data is to be encoded: this is used | |||
to flush the final block through the BIO. | to flush the final block through the BIO. | |||
The flag BIO_FLAGS_BASE64_NO_NL can be set with BIO_set_flags(). | The flag BIO_FLAGS_BASE64_NO_NL can be set with BIO_set_flags(). | |||
For writing, it causes all data to be written on one line without | For writing, it causes all data to be written on one line without | |||
newline at the end. | newline at the end. | |||
For reading, it forces the decoder to process the data regardless | For reading, it expects the data to be all on one line (with or | |||
of newlines. All newlines are ignored and the input does not need | without a trailing newline). | |||
to contain any newline at all. | ||||
=head1 NOTES | =head1 NOTES | |||
Because of the format of base64 encoding the end of the encoded | Because of the format of base64 encoding the end of the encoded | |||
block cannot always be reliably determined. | block cannot always be reliably determined. | |||
=head1 RETURN VALUES | =head1 RETURN VALUES | |||
BIO_f_base64() returns the base64 BIO method. | BIO_f_base64() returns the base64 BIO method. | |||
End of changes. 1 change blocks. | ||||
3 lines changed or deleted | 2 lines changed or added |