vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

Module vibe.stream.base64

Base64 encoding routines

Functions

NameDescription
createBase64OutputStream(output, max_bytes_per_line) Creates a Base64 encoding stream.max_bytes_per_line
createBase64URLOutputStream(output, max_bytes_per_line) Creates a URL safe Base64 encoding stream (using '-' and '_' for non-alphabetic values).

Classes

NameDescription
Base64OutputStreamImpl Generic Base64 encoding output stream.

Aliases

NameTypeDescription
Base64OutputStream Base64OutputStreamImpl!('+','/','=',vibe.core.stream.OutputStream) MIME compatible Base64 encoding stream.
Base64URLOutputStream Base64OutputStreamImpl!('-','_','=',vibe.core.stream.OutputStream) URL safe Base64 encoding stream (using '-' and '_' for non-alphabetic values).
Authors

Jan Krüger, Sönke Ludwig

Copyright

© 2012-2016 RejectedSoftware e.K.

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.