Skip to content

Commit

Permalink
Merge pull request multiformats#11 from kevina/master
Browse files Browse the repository at this point in the history
Distinguish between encoding with and without padding, add z-base-32.
  • Loading branch information
jbenet authored Sep 9, 2016
2 parents 2782ffb + ad1ea98 commit 3df3cdb
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions multibase.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@ encoding, code, name
base1, 1, unary tends to be 11111
base2, 0, binary has 1 and 0
base8, 7, highest char in octal
base10, 9, highest char in decimal
base10, 9, highest char in decimal
base16, Ff, highest char in hex
base32, Uu, rfc4648 - highest letter
base32hex, Vv, rfc4648 - highest char
base58flickr, Z, highest char
base58btc, z, highest char
base64, y, rfc4648 highest char
base64url, Y, rfc4648 highest char
base32hex, Vv, rfc4648 no padding - highest char
base32hexpad, Tt, rfc4648 with padding
base32, Bb, rfc4648 no padding
base32pad, Cc, rfc4648 with padding
base32z h, z-base-32 - used by Tahoe-LAFS - highest letter
base58flickr, Z, highest letter
base58btc, z, highest letter
base64, m, rfc4648 no padding
base64pad, M, rfc4648 with padding - MIME encoding
base64url, u, rfc4648 no padding
base64urlpad, U, rfc4648 with padding

0 comments on commit 3df3cdb

Please sign in to comment.