forked from multiformats/multiaddr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request multiformats#62 from multiformats/fix/not-wip
Stabilize the spec
- Loading branch information
Showing
2 changed files
with
55 additions
and
47 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,22 +1,22 @@ | ||
encoding, code, description | ||
identity, 0x00, 8-bit binary (encoder and decoder keeps data unmodified) | ||
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 | ||
encoding, code, description, status | ||
identity, 0x00, 8-bit binary (encoder and decoder keeps data unmodified), default | ||
base2, 0, binary (01010101), candidate | ||
base8, 7, octal, draft | ||
base10, 9, decimal, draft | ||
base16, f, hexadecimal, default | ||
base16upper, F, hexadecimal, default | ||
base32hex, v, rfc4648 no padding - highest char, candidate | ||
base32hexupper, V, rfc4648 no padding - highest char, candidate | ||
base32hexpad, t, rfc4648 with padding, candidate | ||
base32hexpadupper, T, rfc4648 with padding, candidate | ||
base32, b, rfc4648 no padding, default | ||
base32upper, B, rfc4648 no padding, default | ||
base32pad, c, rfc4648 with padding, candidate | ||
base32padupper, C, rfc4648 with padding, candidate | ||
base32z, h, z-base-32 (used by Tahoe-LAFS), draft | ||
base58flickr, Z, base58 flicker, candidate | ||
base58btc, z, base58 bitcoin, default | ||
base64, m, rfc4648 no padding, default | ||
base64pad, M, rfc4648 with padding - MIME encoding, candidate | ||
base64url, u, rfc4648 no padding, default | ||
base64urlpad, U, rfc4648 with padding, default |