aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/doc/src/base64.xml
blob: cfa1ecc006b3038ed6c810f80855ef01cec8ed3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>2007</year><year>2016</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at
 
          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.
    
    </legalnotice>

    <title>base64</title>
    <prepared>Ingela Anderton Andin</prepared>
    <docno></docno>
    <date>2007-02-22</date>
    <rev></rev>
    <file>base64.xml</file>
  </header>
  <module>base64</module>
  <modulesummary>Provides base64 encode and decode, see
    RFC 2045.</modulesummary>
  <description>
    <p>Provides base64 encode and decode, see
      <url href="https://www.ietf.org/rfc/rfc2045.txt">RFC 2045</url>.</p>
  </description>

  <datatypes>
    <datatype>
      <name name="ascii_string"/>
    </datatype>
    <datatype>
      <name name="ascii_binary"/>
      <desc><p>A <c>binary()</c> with ASCII characters in the range 1 to
        255.</p>
      </desc>
    </datatype>
  </datatypes>

  <funcs>
    <func>
      <name name="decode" arity="1"/>
      <name name="decode_to_string" arity="1"/>
      <name name="mime_decode" arity="1"/>
      <name name="mime_decode_to_string" arity="1"/>
      <fsummary>Decode a base64 encoded string to data.</fsummary>
      <type variable="Base64" name_i="1"/>
      <type variable="Data" name_i="1"/>
      <type variable="DataString" name_i="2"/>
      <desc>
        <p>Decodes a base64-encoded string to plain ASCII. See
          <url href="https://www.ietf.org/html/rfc4648">RFC 4648</url>.</p>
        <p><c>mime_decode/1</c> and <c>mime_decode_to_string/1</c> strip away
          illegal characters, while <c>decode/1</c> and
          <c>decode_to_string/1</c> only strip away whitespace characters.</p>
      </desc>
    </func>

    <func>
      <name name="encode" arity="1"/>
      <name name="encode_to_string" arity="1"/>
      <fsummary>Encode data into base64.</fsummary>
      <type variable="Data"/>
      <type variable="Base64" name_i="1"/>
      <type variable="Base64String"/>
      <desc>
        <p>Encodes a plain ASCII string into base64. The result is 33% larger
          than the data.</p>
      </desc>
    </func>
  </funcs>
</erlref>