Skip to content

guyskk/base32j

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Base32j

Base32 exclude letter i j l o, without padding.
Alphabet: 0123456789abcdefghkmnpqrstuvwxyz

pip install base32j

Note: Implementation is copy from Python base64.py

Usage

>>> import base32j
>>> s = base32j.encode(b'hello world')
>>> s
'd1kqsv3f41vqywmccg'
>>> base32j.decode(s)
b'hello world'

About

Base32 without padding

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages