chiark / gitweb /
Makefiles: Use Final.sd.mk to implementing RECHECK_RM
[secnet.git] / base91-python / README.md
1 base91-python
2 =============
3
4 A python implementation of Base91 as described on http://base91.sourceforge.net/ , licenced under the New BSD License.
5
6 Usage
7 -----
8
9         import base91
10
11         base91.encode('test')                                           #result: 'fPNKd'
12         base91.encode(b'\xfe\x03\x00W\xa9\xbc')         #result: 'VLv(GdNE'
13
14         base91.decode('8D9Kc)=/2$WzeFui#G9Km+<{VT2u9MZil}[A') # result: 'May a moody baby doom a yam?\n'
15