blob: 290fa83a047a50408fd1b8568354f1b4c863b50c [file] [log] [blame]
Guido van Rossumaa925a51997-04-02 05:47:39 +00001#! /usr/bin/env python
2
Guido van Rossum4acc25b2000-02-02 15:10:15 +00003"""Conversions to/from base64 transport encoding as per RFC-1521."""
4
Jack Jansen951213e1995-10-04 16:39:20 +00005# Modified 04-Oct-95 by Jack to use binascii module
6
7import binascii
8
Skip Montanaroe99d5ea2001-01-20 19:54:20 +00009__all__ = ["encode","decode","encodestring","decodestring"]
10
Guido van Rossumf1945461995-06-14 23:43:44 +000011MAXLINESIZE = 76 # Excluding the CRLF
Jack Jansen951213e1995-10-04 16:39:20 +000012MAXBINSIZE = (MAXLINESIZE/4)*3
Guido van Rossumf1945461995-06-14 23:43:44 +000013
Guido van Rossumf1945461995-06-14 23:43:44 +000014def encode(input, output):
Guido van Rossum4acc25b2000-02-02 15:10:15 +000015 """Encode a file."""
16 while 1:
17 s = input.read(MAXBINSIZE)
18 if not s: break
19 while len(s) < MAXBINSIZE:
20 ns = input.read(MAXBINSIZE-len(s))
21 if not ns: break
22 s = s + ns
23 line = binascii.b2a_base64(s)
24 output.write(line)
Guido van Rossumf1945461995-06-14 23:43:44 +000025
Guido van Rossumf1945461995-06-14 23:43:44 +000026def decode(input, output):
Guido van Rossum4acc25b2000-02-02 15:10:15 +000027 """Decode a file."""
28 while 1:
29 line = input.readline()
30 if not line: break
31 s = binascii.a2b_base64(line)
32 output.write(s)
Guido van Rossumf1945461995-06-14 23:43:44 +000033
34def encodestring(s):
Guido van Rossum4acc25b2000-02-02 15:10:15 +000035 """Encode a string."""
36 import StringIO
37 f = StringIO.StringIO(s)
38 g = StringIO.StringIO()
39 encode(f, g)
40 return g.getvalue()
Guido van Rossumf1945461995-06-14 23:43:44 +000041
42def decodestring(s):
Guido van Rossum4acc25b2000-02-02 15:10:15 +000043 """Decode a string."""
44 import StringIO
45 f = StringIO.StringIO(s)
46 g = StringIO.StringIO()
47 decode(f, g)
48 return g.getvalue()
Guido van Rossumf1945461995-06-14 23:43:44 +000049
Guido van Rossumf1945461995-06-14 23:43:44 +000050def test():
Guido van Rossum4acc25b2000-02-02 15:10:15 +000051 """Small test program"""
52 import sys, getopt
53 try:
54 opts, args = getopt.getopt(sys.argv[1:], 'deut')
55 except getopt.error, msg:
56 sys.stdout = sys.stderr
57 print msg
Jeremy Hylton03651802000-07-25 14:34:38 +000058 print """usage: %s [-d|-e|-u|-t] [file|-]
Guido van Rossum4acc25b2000-02-02 15:10:15 +000059 -d, -u: decode
60 -e: encode (default)
Jeremy Hylton03651802000-07-25 14:34:38 +000061 -t: encode and decode string 'Aladdin:open sesame'"""%sys.argv[0]
Guido van Rossum4acc25b2000-02-02 15:10:15 +000062 sys.exit(2)
63 func = encode
64 for o, a in opts:
65 if o == '-e': func = encode
66 if o == '-d': func = decode
67 if o == '-u': func = decode
68 if o == '-t': test1(); return
69 if args and args[0] != '-':
70 func(open(args[0], 'rb'), sys.stdout)
71 else:
72 func(sys.stdin, sys.stdout)
Guido van Rossumf1945461995-06-14 23:43:44 +000073
74def test1():
Guido van Rossum4acc25b2000-02-02 15:10:15 +000075 s0 = "Aladdin:open sesame"
76 s1 = encodestring(s0)
77 s2 = decodestring(s1)
78 print s0, `s1`, s2
Guido van Rossumf1945461995-06-14 23:43:44 +000079
80if __name__ == '__main__':
Guido van Rossum4acc25b2000-02-02 15:10:15 +000081 test()