Skip to content
This repository has been archived by the owner on Aug 24, 2021. It is now read-only.

Commit

Permalink
fix: changed name of murmur3 codec to murmur3-128
Browse files Browse the repository at this point in the history
  • Loading branch information
pgte committed Mar 23, 2017
1 parent 62b9f21 commit 34a9496
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exports.names = {
'keccak-256': 0x1B,
'keccak-384': 0x1C,
'keccak-512': 0x1D,
'murmur3': 0x22,
'murmur3-128': 0x22,
'blake2b-8': 0xb201,
'blake2b-16': 0xb202,
'blake2b-24': 0xb203,
Expand Down Expand Up @@ -129,7 +129,7 @@ exports.codes = {
0x1B: 'keccak-256',
0x1C: 'keccak-384',
0x1D: 'keccak-512',
0x22: 'murmur3',
0x22: 'murmur3-128',

// blake2
0xb201: 'blake2b-8',
Expand Down

0 comments on commit 34a9496

Please sign in to comment.