This repository has been archived by the owner on Aug 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathindex.js
248 lines (212 loc) · 5.43 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/**
* Multihash implementation in JavaScript.
*/
'use strict'
const multibase = require('multibase')
const varint = require('varint')
const { names } = require('./constants')
const { toString: uint8ArrayToString } = require('uint8arrays/to-string')
const { fromString: uint8ArrayFromString } = require('uint8arrays/from-string')
const { concat: uint8ArrayConcat } = require('uint8arrays/concat')
const codes = /** @type {import('./types').CodeNameMap} */({})
// eslint-disable-next-line guard-for-in
for (const key in names) {
const name = /** @type {HashName} */(key)
codes[names[name]] = name
}
Object.freeze(codes)
/**
* Convert the given multihash to a hex encoded string.
*
* @param {Uint8Array} hash
* @returns {string}
*/
function toHexString (hash) {
if (!(hash instanceof Uint8Array)) {
throw new Error('must be passed a Uint8Array')
}
return uint8ArrayToString(hash, 'base16')
}
/**
* Convert the given hex encoded string to a multihash.
*
* @param {string} hash
* @returns {Uint8Array}
*/
function fromHexString (hash) {
return uint8ArrayFromString(hash, 'base16')
}
/**
* Convert the given multihash to a base58 encoded string.
*
* @param {Uint8Array} hash
* @returns {string}
*/
function toB58String (hash) {
if (!(hash instanceof Uint8Array)) {
throw new Error('must be passed a Uint8Array')
}
return uint8ArrayToString(multibase.encode('base58btc', hash)).slice(1)
}
/**
* Convert the given base58 encoded string to a multihash.
*
* @param {string|Uint8Array} hash
* @returns {Uint8Array}
*/
function fromB58String (hash) {
const encoded = hash instanceof Uint8Array
? uint8ArrayToString(hash)
: hash
return multibase.decode('z' + encoded)
}
/**
* Decode a hash from the given multihash.
*
* @param {Uint8Array} bytes
* @returns {{code: HashCode, name: HashName, length: number, digest: Uint8Array}} result
*/
function decode (bytes) {
if (!(bytes instanceof Uint8Array)) {
throw new Error('multihash must be a Uint8Array')
}
if (bytes.length < 2) {
throw new Error('multihash too short. must be > 2 bytes.')
}
const code = /** @type {HashCode} */(varint.decode(bytes))
if (!isValidCode(code)) {
throw new Error(`multihash unknown function code: 0x${code.toString(16)}`)
}
bytes = bytes.slice(varint.decode.bytes)
const len = varint.decode(bytes)
if (len < 0) {
throw new Error(`multihash invalid length: ${len}`)
}
bytes = bytes.slice(varint.decode.bytes)
if (bytes.length !== len) {
throw new Error(`multihash length inconsistent: 0x${uint8ArrayToString(bytes, 'base16')}`)
}
return {
code,
name: codes[code],
length: len,
digest: bytes
}
}
/**
* Encode a hash digest along with the specified function code.
*
* > **Note:** the length is derived from the length of the digest itself.
*
* @param {Uint8Array} digest
* @param {HashName | HashCode} code
* @param {number} [length]
* @returns {Uint8Array}
*/
function encode (digest, code, length) {
if (!digest || code === undefined) {
throw new Error('multihash encode requires at least two args: digest, code')
}
// ensure it's a hashfunction code.
const hashfn = coerceCode(code)
if (!(digest instanceof Uint8Array)) {
throw new Error('digest should be a Uint8Array')
}
if (length == null) {
length = digest.length
}
if (length && digest.length !== length) {
throw new Error('digest length should be equal to specified length.')
}
const hash = varint.encode(hashfn)
const len = varint.encode(length)
return uint8ArrayConcat([hash, len, digest], hash.length + len.length + digest.length)
}
/**
* Converts a hash function name into the matching code.
* If passed a number it will return the number if it's a valid code.
*
* @param {HashName | number} name
* @returns {number}
*/
function coerceCode (name) {
let code = name
if (typeof name === 'string') {
if (names[name] === undefined) {
throw new Error(`Unrecognized hash function named: ${name}`)
}
code = names[name]
}
if (typeof code !== 'number') {
throw new Error(`Hash function code should be a number. Got: ${code}`)
}
// @ts-ignore
if (codes[code] === undefined && !isAppCode(code)) {
throw new Error(`Unrecognized function code: ${code}`)
}
return code
}
/**
* Checks if a code is part of the app range
*
* @param {number} code
* @returns {boolean}
*/
function isAppCode (code) {
return code > 0 && code < 0x10
}
/**
* Checks whether a multihash code is valid.
*
* @param {HashCode} code
* @returns {boolean}
*/
function isValidCode (code) {
if (isAppCode(code)) {
return true
}
if (codes[code]) {
return true
}
return false
}
/**
* Check if the given buffer is a valid multihash. Throws an error if it is not valid.
*
* @param {Uint8Array} multihash
* @returns {void}
* @throws {Error}
*/
function validate (multihash) {
decode(multihash) // throws if bad.
}
/**
* Returns a prefix from a valid multihash. Throws an error if it is not valid.
*
* @param {Uint8Array} multihash
* @returns {Uint8Array}
* @throws {Error}
*/
function prefix (multihash) {
validate(multihash)
return multihash.subarray(0, 2)
}
module.exports = {
names,
codes,
toHexString,
fromHexString,
toB58String,
fromB58String,
decode,
encode,
coerceCode,
isAppCode,
validate,
prefix,
isValidCode
}
/**
* @typedef { import("./constants").HashCode } HashCode
* @typedef { import("./constants").HashName } HashName
*/