update murmur3 length / family to match current uses (#236)

This commit is contained in:
Will 2021-10-14 19:32:54 -07:00 committed by GitHub
parent 31acf0bc7e
commit 36789e0856
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,7 @@ keccak-512, multihash, 0x1d, draft,
blake3, multihash, 0x1e, draft, BLAKE3 has a default 32 byte output length. The maximum length is (2^64)-1 bytes.
sha2-384, multihash, 0x20, permanent, aka SHA-384; as specified by FIPS 180-4.
dccp, multiaddr, 0x21, draft,
murmur3-128, multihash, 0x22, draft,
murmur3-x64-64, multihash, 0x22, permanent, The first 64-bits of a murmur3-x64-128 - used for UnixFS directory sharding.
murmur3-32, multihash, 0x23, draft,
ip6, multiaddr, 0x29, permanent,
ip6zone, multiaddr, 0x2a, draft,
@ -132,6 +132,7 @@ sha2-256-trunc254-padded, multihash, 0x1012, permanent, SHA2-
sha2-224, multihash, 0x1013, permanent, aka SHA-224; as specified by FIPS 180-4.
sha2-512-224, multihash, 0x1014, permanent, aka SHA-512/224; as specified by FIPS 180-4.
sha2-512-256, multihash, 0x1015, permanent, aka SHA-512/256; as specified by FIPS 180-4.
murmur3-x64-128, multihash, 0x1022, draft,
ripemd-128, multihash, 0x1052, draft,
ripemd-160, multihash, 0x1053, draft,
ripemd-256, multihash, 0x1054, draft,

1 name tag code status description
21 blake3 multihash 0x1e draft BLAKE3 has a default 32 byte output length. The maximum length is (2^64)-1 bytes.
22 sha2-384 multihash 0x20 permanent aka SHA-384; as specified by FIPS 180-4.
23 dccp multiaddr 0x21 draft
24 murmur3-128 murmur3-x64-64 multihash 0x22 draft permanent The first 64-bits of a murmur3-x64-128 - used for UnixFS directory sharding.
25 murmur3-32 multihash 0x23 draft
26 ip6 multiaddr 0x29 permanent
27 ip6zone multiaddr 0x2a draft
132 sha2-224 multihash 0x1013 permanent aka SHA-224; as specified by FIPS 180-4.
133 sha2-512-224 multihash 0x1014 permanent aka SHA-512/224; as specified by FIPS 180-4.
134 sha2-512-256 multihash 0x1015 permanent aka SHA-512/256; as specified by FIPS 180-4.
135 murmur3-x64-128 multihash 0x1022 draft
136 ripemd-128 multihash 0x1052 draft
137 ripemd-160 multihash 0x1053 draft
138 ripemd-256 multihash 0x1054 draft