Copyright © 2006 Mochi Media, Inc.
Authors: Bob Ippolito (bob@mochimedia.com).
iodata() = iolist() | binary()
iolist() = [char() | binary() | iolist()]
decode/1 | Return the Erlang term originally encoded by encode/1 using the MAC to ensure its authenticity. |
encode/1 | Return a URL-safe representation of the given term and a MAC to verify its authenticity. |
mac/1 | Return the MD5 MAC for the given IoData. |
rawdecode/1 | Return the binary() originally encoded by rawencode/1 using the MAC to ensure its authenticity. |
rawencode/1 | Return a URL-safe representation of the given binary and a MAC to verify its authenticity. |
url64_decode/1 | Return the original binary encoded in String via url64_encode/1. |
url64_encode/1 | Return a URL safe representation of IoData. |
decode(String) -> {ok, term()} | error
Return the Erlang term originally encoded by encode/1 using the MAC to ensure its authenticity.
encode(Term) -> string()
Return a URL-safe representation of the given term and a MAC to verify its authenticity.
mac(Binary::IoData) -> binary()
Return the MD5 MAC for the given IoData.
rawdecode(String) -> {ok, binary()} | error
Return the binary() originally encoded by rawencode/1 using the MAC to ensure its authenticity.
rawencode(Binary) -> string()
Return a URL-safe representation of the given binary and a MAC to verify its authenticity.
url64_decode(String) -> binary()
Return the original binary encoded in String via url64_encode/1.
url64_encode(IoData) -> string()
Return a URL safe representation of IoData.
Generated by EDoc, Aug 9 2007, 13:20:00.