Move some of my more useful utilities out from my all-purpose
[sgt/utils] / base64 / base64.but
CommitLineData
9acadc2b 1\cfg{man-identity}{base64}{1}{2004-08-02}{Simon Tatham}{Simon Tatham}
2\cfg{man-mindepth}{1}
3
4\C{base64-manpage} Man page for \cw{base64}
5
6\H{base64-manpage-name} NAME
7
8\cw{base64} - stand-alone encoder and decoder for base64
9
10\H{base64-manpage-synopsis} SYNOPSIS
11
12\c base64 [ -d ] [ filename ]
13\e bbbbbb bb iiiiiiii
14\c base64 -e [ -cwidth ] [ filename ]
15\e bbbbbb bb bbiiiii iiiiiiii
16
17\H{base64-manpage-description} DESCRIPTION
18
19\cw{base64} is a command-line utility for encoding and decoding the
20\q{base64} encoding.
21
22This encoding, defined in RFC 2045, is primarily used to encode
23binary attachments in MIME e-mail, but is widely used in many other
24applications as well. For example, the \q{Content-MD5} mail header
25contains a small piece of base64; SSH private keys are generally
26stored as base64-encoded blobs; and so on.
27
28Other utilities, such as \cw{munpack}, exist which will take an
29entire MIME-encoded message, identify the base64-encoded subparts,
30and decode them. However, these utilities will not help you if you
31need to inspect a Content-MD5 header or an SSH private key.
32
33\cw{base64} is a very simple stand-alone encoder and decoder for the
34base64 format \e{alone}. It does not try to understand MIME headers
35or anything other than raw data.
36
37\H{base64-manpage-options} OPTIONS
38
39By default (if neither \cw{-d} or \cw{-e} is supplied), \cw{base64}
40operates in decode mode.
41
42\dt \cw{-d}
43
44\dd Places \cw{base64} into decode mode. In this mode, it will read
45from standard input or the supplied file name, ignore all characters
46that are not part of the base64 alphabet, decode the ones that are,
47and output the decoded data on standard output.
48
49\dt \cw{-e}
50
51\dd Places \cw{base64} into encode mode. In this mode, it will read
52binary data from standard input or the supplied file name, encode it
53as base64, and output the encoded data on standard output.
54
55\dt \cw{-c}\e{width}
56
57\dd If \cw{base64} is operating in encode mode, this controls the
58number of base64 characters output per line of the encoded file.
59Normally base64-reading applications do not care about this, so the
60default of 64 characters per line is perfectly adequate.
61
62\lcont{
63
64The special value 0 will prevent \cw{base64} from ever writing a
65line break in the middle of the data at all.
66
67The base64 encoding converts between a group of three plaintext
68bytes and a group of four encoded bytes. \cw{base64} does not
69support breaking an encoded group across a line. Therefore, the
70\e{width} parameter passed to \cw{-c} must be a multiple of 4.
71
72}