1=pod 2 3=head1 NAME 4 5BIO_f_base64 - base64 BIO filter 6 7=head1 SYNOPSIS 8 9=for comment multiple includes 10 11 #include <openssl/bio.h> 12 #include <openssl/evp.h> 13 14 const BIO_METHOD *BIO_f_base64(void); 15 16=head1 DESCRIPTION 17 18BIO_f_base64() returns the base64 BIO method. This is a filter 19BIO that base64 encodes any data written through it and decodes 20any data read through it. 21 22Base64 BIOs do not support BIO_gets() or BIO_puts(). 23 24For writing, output is by default divided to lines of length 64 25characters and there is always a newline at the end of output. 26 27For reading, first line should be at most 1024 28characters long. If it is longer then it is ignored completely. 29Other input lines can be of any length. There must be a newline 30at the end of input. 31 32This behavior can be changed with BIO_FLAGS_BASE64_NO_NL flag. 33 34BIO_flush() on a base64 BIO that is being written through is 35used to signal that no more data is to be encoded: this is used 36to flush the final block through the BIO. 37 38The flag BIO_FLAGS_BASE64_NO_NL can be set with BIO_set_flags(). 39For writing, it causes all data to be written on one line without 40newline at the end. 41For reading, it expects the data to be all on one line (with or 42without a trailing newline). 43 44=head1 NOTES 45 46Because of the format of base64 encoding the end of the encoded 47block cannot always be reliably determined. 48 49=head1 RETURN VALUES 50 51BIO_f_base64() returns the base64 BIO method. 52 53=head1 EXAMPLES 54 55Base64 encode the string "Hello World\n" and write the result 56to standard output: 57 58 BIO *bio, *b64; 59 char message[] = "Hello World \n"; 60 61 b64 = BIO_new(BIO_f_base64()); 62 bio = BIO_new_fp(stdout, BIO_NOCLOSE); 63 BIO_push(b64, bio); 64 BIO_write(b64, message, strlen(message)); 65 BIO_flush(b64); 66 67 BIO_free_all(b64); 68 69Read Base64 encoded data from standard input and write the decoded 70data to standard output: 71 72 BIO *bio, *b64, *bio_out; 73 char inbuf[512]; 74 int inlen; 75 76 b64 = BIO_new(BIO_f_base64()); 77 bio = BIO_new_fp(stdin, BIO_NOCLOSE); 78 bio_out = BIO_new_fp(stdout, BIO_NOCLOSE); 79 BIO_push(b64, bio); 80 while ((inlen = BIO_read(b64, inbuf, 512)) > 0) 81 BIO_write(bio_out, inbuf, inlen); 82 83 BIO_flush(bio_out); 84 BIO_free_all(b64); 85 86=head1 BUGS 87 88The ambiguity of EOF in base64 encoded data can cause additional 89data following the base64 encoded block to be misinterpreted. 90 91There should be some way of specifying a test that the BIO can perform 92to reliably determine EOF (for example a MIME boundary). 93 94=head1 COPYRIGHT 95 96Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved. 97 98Licensed under the OpenSSL license (the "License"). You may not use 99this file except in compliance with the License. You can obtain a copy 100in the file LICENSE in the source distribution or at 101L<https://www.openssl.org/source/license.html>. 102 103=cut 104