The Base64
module provides for the encoding (#encode
, #strict_encode
, #urlsafe_encode
) and decoding (#decode
) of binary data using a base64 representation.
A simple encoding and decoding.
require "base64" enc = Base64.encode("Send reinforcements") # => "U2VuZCByZWluZm9yY2VtZW50cw==\n" plain = Base64.decode_string(enc) # => "Send reinforcements"
The purpose of using base64 to encode data is that it translates any binary data into purely printable characters.
Writes the base64-decoded version of data to io.
Returns the base64-decoded version of data as a Bytes
.
Returns the base64-decoded version of data as a string.
Writes the base64-encoded version of data to io.
Returns the base64-encoded version of data.
Writes the base64-encoded version of data with no newlines to io.
Returns the base64-encoded version of data with no newlines.
Writes the base64-encoded version of data using a urlsafe alphabet to io.
Returns the base64-encoded version of data using a urlsafe alphabet.
Writes the base64-decoded version of data to io. This will decode either the normal or urlsafe alphabets.
Returns the base64-decoded version of data as a Bytes
. This will decode either the normal or urlsafe alphabets.
Returns the base64-decoded version of data as a string. This will decode either the normal or urlsafe alphabets.
Writes the base64-encoded version of data to io. This method complies with RFC 2045. Line feeds are added to every 60 encoded characters.
Base64.encode("Now is the time for all good coders\nto learn Crystal", STDOUT)
Returns the base64-encoded version of data. This method complies with RFC 2045. Line feeds are added to every 60 encoded characters.
puts Base64.encode("Now is the time for all good coders\nto learn Crystal")
Generates:
Tm93IGlzIHRoZSB0aW1lIGZvciBhbGwgZ29vZCBjb2RlcnMKdG8gbGVhcm4g Q3J5c3RhbA==
Writes the base64-encoded version of data with no newlines to io. This method complies with RFC 4648.
Base64.strict_encode("Now is the time for all good coders\nto learn Crystal", STDOUT)
Returns the base64-encoded version of data with no newlines. This method complies with RFC 4648.
puts Base64.strict_encode("Now is the time for all good coders\nto learn Crystal")
Generates:
Tm93IGlzIHRoZSB0aW1lIGZvciBhbGwgZ29vZCBjb2RlcnMKdG8gbGVhcm4gQ3J5c3RhbA==
Writes the base64-encoded version of data using a urlsafe alphabet to io. This method complies with "Base 64 Encoding with URL and Filename Safe Alphabet" in RFC 4648.
The alphabet uses '-'
instead of '+'
and '_'
instead of '/'
.
Returns the base64-encoded version of data using a urlsafe alphabet. This method complies with "Base 64 Encoding with URL and Filename Safe Alphabet" in RFC 4648.
The alphabet uses '-'
instead of '+'
and '_'
instead of '/'
.
The padding parameter defaults to true
. When false
, enough =
characters are not added to make the output divisible by 4.
© 2012–2020 Manas Technology Solutions.
Licensed under the Apache License, Version 2.0.
https://crystal-lang.org/api/0.35.1/Base64.html