Merge pull request #131 from multiformats/feat/libp2p-pubkey

multicodec: add IPLD codec for libp2p public keys
This commit is contained in:
Steven Allen 2019-05-27 10:08:08 -07:00 committed by GitHub
commit 11de049dab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,6 +37,7 @@ rlp, serialization, 0x60, recursive length
bencode, serialization, 0x63, bencode
dag-pb, ipld, 0x70, MerkleDAG protobuf
dag-cbor, ipld, 0x71, MerkleDAG cbor
libp2p-key, ipld, 0x72, Libp2p Public Key
git-raw, ipld, 0x78, Raw Git object
torrent-info, ipld, 0x7b, Torrent file info field (bencoded)
torrent-file, ipld, 0x7c, Torrent file (bencoded)

1 name tag code description
37 bencode serialization 0x63 bencode
38 dag-pb ipld 0x70 MerkleDAG protobuf
39 dag-cbor ipld 0x71 MerkleDAG cbor
40 libp2p-key ipld 0x72 Libp2p Public Key
41 git-raw ipld 0x78 Raw Git object
42 torrent-info ipld 0x7b Torrent file info field (bencoded)
43 torrent-file ipld 0x7c Torrent file (bencoded)