| Aut documentation | view source | Contained in the Aut distribution. |
decode(base64 string)) --> stringAut::Base64 -- Base64 encoding/decoding for Aut.
This module encapsulates MIME::Base64. It sees to it that encoded strings that terminate with a newline ('\n') are chomped. This has been done to facilitate Aut Backends that loose trailing newlines (like Config::Inifiles).
If trailing newlines (whitespace) is lost, hashing algorithms start to behave different for strings that appear the same.
new() --> Aut::Base64Instantiates a new Aut::Base64 object.
encode(text) --> base64 stringEncodes text into a base64 string using MIME::Base64's encode_base64()
function and chomps it.
decode(base64 string)) --> stringDecodes base64 text using MIME::Base64's decode_base64().
Hans Oesterholt-Dijkema <oesterhol@cpan.org>
(c)2004 Hans Oesterholt-Dijkema, This module is distributed under Artistic license.
| Aut documentation | view source | Contained in the Aut distribution. |