module Base64
Overview
TheBase64 module provides for the encoding (#encode,#strict_encode,
#urlsafe_encode) and decoding (#decode)
of binary data using a base64 representation.
Example
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.
Extended Modules
Defined in:
base64.crInstance Method Summary
-
#decode(data, io : IO)
Writes the base64-decoded version ofdata toio.
-
#decode(data) : Bytes
Returns the base64-decoded version ofdata as a
Bytes. -
#decode_string(data) : String
Returns the base64-decoded version ofdata as a string.
-
#encode(data, io : IO)
Writes the base64-encoded version ofdata toio.
-
#encode(data) : String
Returns the base64-encoded version ofdata.
-
#strict_encode(data, io : IO)
Writes the base64-encoded version ofdata with no newlines toio.
-
#strict_encode(data) : String
Returns the base64-encoded version ofdata with no newlines.
-
#urlsafe_encode(data, io : IO)
Writes the base64-encoded version ofdata using a urlsafe alphabet toio.
-
#urlsafe_encode(data, padding = true) : String
Returns the base64-encoded version ofdata using a urlsafe alphabet.
Instance Method Detail
Writes the base64-decoded version ofdata toio. This will decode either the normal or urlsafe alphabets.
Returns the base64-decoded version ofdata as aBytes.
This will decode either the normal or urlsafe alphabets.
Returns the base64-decoded version ofdata as a string. This will decode either the normal or urlsafe alphabets.
Writes the base64-encoded version ofdata toio. This method complies withRFC 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 ofdata. This method complies withRFC 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 ofdata with no newlines toio. This method complies withRFC 4648.
Base64.strict_encode("Now is the time for all good coders\nto learn Crystal", STDOUT)
Returns the base64-encoded version ofdata with no newlines. This method complies withRFC 4648.
puts Base64.strict_encode("Now is the time for all good coders\nto learn Crystal")
Generates:
Tm93IGlzIHRoZSB0aW1lIGZvciBhbGwgZ29vZCBjb2RlcnMKdG8gbGVhcm4gQ3J5c3RhbA==
Writes the base64-encoded version ofdata using a urlsafe alphabet toio. This method complies with"Base 64 Encoding with URL and Filename Safe Alphabet" inRFC 4648.
The alphabet uses'-' instead of'+' and'_' instead of'/'.
Returns the base64-encoded version ofdata using a urlsafe alphabet. This method complies with"Base 64 Encoding with URL and Filename Safe Alphabet" inRFC 4648.
The alphabet uses'-' instead of'+' and'_' instead of'/'.
Thepadding parameter defaults totrue. Whenfalse, enough= characters
are not added to make the output divisible by 4.