Base64
The Base64 module allows for easy encoding and decoding of Base64 values.
Constructor¶
Base64.new()
¶
Constructs a new Base64 object.
1 |
|
Methods¶
Encode(String str)
¶
Encodes the string into Base64 format.
1 2 |
|
Decode(String encodedStr)
¶
Decodes the string from Base64 format.
1 2 |
|