Implementation of Crockford's Base32 Encoding?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • samslists@gmail.com

    Implementation of Crockford's Base32 Encoding?

    Anyone know of a Python implementation of this: http://www.crockford.com/wrmg/base32.html

    Google shows a Perl library. I'm sure someone must have a Python
    library somewhere? :)

    Thanks

    [And yes...I know it won't be that hard to do...

    I will do it if it doesn't already exist, but I'd much rather spend my
    time on my core application.]
  • Paul Rubin

    #2
    Re: Implementation of Crockford's Base32 Encoding?

    "samslists@gmai l.com" <samslists@gmai l.comwrites:
    Anyone know of a Python implementation of this: http://www.crockford.com/wrmg/base32.html
    Is that different from the base32 encoding already in the base64 module?

    Source code: Lib/base64.py This module provides functions for encoding binary data to printable ASCII characters and decoding such encodings back to binary data. This includes the encodings specifi...

    Comment

    Working...