Query: base64
OS: linux
Section: 3erl
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
base64(3erl) Erlang Module Definition base64(3erl)NAMEbase64 - Implements base 64 encode and decode, see RFC2045.DESCRIPTIONImplements base 64 encode and decode, see RFC2045.EXPORTSencode(Data) -> Base64 encode_to_string(Data) -> Base64String Types Data = string() | binary() Base64 = binary() Base64String = string() Encodes a plain ASCII string into base64. The result will be 33% larger than the data. decode(Base64) -> Data decode_to_string(Base64) -> DataString mime_decode(Base64) -> Data mime_decode_to_string(Base64) -> DataString Types Base64 = string() | binary() Data = binary() DataString = string() Decodes a base64 encoded string to plain ASCII. See RFC4648. mime_decode/1 and mime_decode_to_string/1 strips away illegal charac- ters, while decode/1 and decode_to_string/1 only strips away whitespace characters. Ericsson AB stdlib 1.17.3 base64(3erl)
| Related Man Pages | 
|---|
| base64(1) - osx | 
| base64(3tcl) - debian | 
| mime::base645.18(3pm) - mojave | 
| mime::base64(3pm) - centos | 
| apr::base64(3) - osx | 
| Similar Topics in the Unix Linux Community | 
|---|
| I'm looking for someone who have Base64 binary | 
| not able to run base64 exe | 
| Java Base64 1.2 (Default branch) | 
| Why are there LFs in my base64? | 
| Ldapsearch returning base64 encoded results |