1 #ifndef ISTREAM_BASE64_H
2 #define ISTREAM_BASE64_H
3 
4 struct istream *
5 i_stream_create_base64_encoder(struct istream *input,
6 			       unsigned int chars_per_line, bool crlf);
7 struct istream *
8 i_stream_create_base64url_encoder(struct istream *input,
9 				  unsigned int chars_per_line, bool crlf);
10 
11 struct istream *
12 i_stream_create_base64_decoder(struct istream *input);
13 struct istream *
14 i_stream_create_base64url_decoder(struct istream *input);
15 
16 #endif
17