-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update table to better match the table in multicodec
- Loading branch information
Showing
8 changed files
with
76 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,23 @@ | ||
encoding, code, name | ||
identity, 0x00, 8-bit binary (encoder and decoder keeps data unmodified) | ||
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 | ||
base16, Ff, highest char in hex | ||
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 | ||
encoding, code, description | ||
identity, 0x00, 8-bit binary (encoder and decoder keeps data unmodified) | ||
base1, 1, unary (11111) | ||
base2, 0, binary (01010101) | ||
base8, 7, octal | ||
base10, 9, decimal | ||
base16, f, hexadecimal | ||
base16upper, F, hexadecimal | ||
base32hex, v, rfc4648 no padding - highest char | ||
base32hexupper, v, rfc4648 no padding - highest char | ||
base32hexpad, t, rfc4648 with padding | ||
base32hexpadupper, T, rfc4648 with padding | ||
base32, b, rfc4648 no padding | ||
base32upper, B, rfc4648 no padding | ||
base32pad, c, rfc4648 with padding | ||
base32padupper, C, rfc4648 with padding | ||
base32z, h, z-base-32 (used by Tahoe-LAFS) | ||
base58flickr, Z, base58 flicker | ||
base58btc, z, base58 bitcoin | ||
base64, m, rfc4648 no padding | ||
base64pad, M, rfc4648 with padding - MIME encoding | ||
base64url, u, rfc4648 no padding | ||
base64urlpad, U, rfc4648 with padding |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
non-canonical encoding, "hello world" | ||
base16, "f68656c6c6f20776F726C64" | ||
BASE16, "F68656c6c6f20776F726C64" | ||
base16upper, "F68656c6c6f20776F726C64" | ||
base32, "bnbswy3dpeB3W64TMMQ" | ||
BASE32, "Bnbswy3dpeB3W64TMMQ" | ||
base32upper, "Bnbswy3dpeB3W64TMMQ" | ||
base32hex, "vd1imor3f41RMUSJCCG" | ||
BASE32HEX, "Vd1imor3f41RMUSJCCG" | ||
base32hexupper, "Vd1imor3f41RMUSJCCG" | ||
base32pad, "cnbswy3dpeB3W64TMMQ======" | ||
BASE32PAD, "Cnbswy3dpeB3W64TMMQ======" | ||
base32padupper, "Cnbswy3dpeB3W64TMMQ======" | ||
base32hexpad, "td1imor3f41RMUSJCCG======" | ||
BASE32HEXPAD, "Td1imor3f41RMUSJCCG======" | ||
base32hexpadupper, "Td1imor3f41RMUSJCCG======" |