-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
143 lines (119 loc) · 3.27 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
const { randomBytes } = require('crypto')
const { Codegen } = require('./steps/codegen')
const { Compile } = require('./steps/compile')
const { Segment } = require('./steps/segment')
const { Bundle } = require('./steps/bundle')
const { Sign } = require('./steps/sign')
const extend = require('extend')
const debug = require('debug')('hidden-machine')
const Batch = require('batch')
const utils = require('./lib/utils')
const pify = require('pify')
const rc = require('./lib/rc')
const {
crypto_secretbox_NONCEBYTES,
crypto_sign_PUBLICKEYBYTES,
crypto_sign_SECRETKEYBYTES,
crypto_sign_SEEDBYTES,
crypto_kdf_KEYBYTES,
crypto_sign_seed_keypair,
crypto_generichash_batch,
} = require('sodium-native')
function ensureBufferWithSize(buffer, size) {
return Buffer.isBuffer(buffer) && buffer.length >= size ? buffer : null
}
async function start(input, opts) {
const queue = new Batch().concurrency(1)
const steps = []
opts = extend(true, rc, utils.ensureObject(opts))
const publicKey = (
ensureBufferWithSize(
utils.toBuffer(opts.publicKey, 'hex'),
crypto_sign_PUBLICKEYBYTES) ||
Buffer.allocUnsafe(crypto_sign_PUBLICKEYBYTES)
)
const secretKey = (
ensureBufferWithSize(
utils.toBuffer(opts.secretKey, 'hex'),
crypto_sign_SECRETKEYBYTES) ||
Buffer.allocUnsafe(crypto_sign_SECRETKEYBYTES)
)
const secret = (
ensureBufferWithSize(utils.toBuffer(opts.secret), 8) ||
randomBytes(32)
)
const nonce = ensureBufferWithSize(
utils.toBuffer(opts.nonce, 'hex'),
crypto_secretbox_NONCEBYTES
)
const seed = (
ensureBufferWithSize(
utils.toBuffer(opts.seed, 'hex'),
crypto_sign_SEEDBYTES) ||
Buffer.allocUnsafe(crypto_sign_SEEDBYTES)
)
const key = (
ensureBufferWithSize(
utils.toBuffer(opts.key, 'hex'),
crypto_kdf_KEYBYTES) ||
secretKey.slice(0, crypto_kdf_KEYBYTES)
)
if (!opts.publicKey || !opts.secretKey) {
if (!opts.seed) {
crypto_generichash_batch(seed, [ secret ])
}
crypto_sign_seed_keypair(publicKey, secretKey, seed)
}
if (true === opts.keygen) {
return {
publicKey, secretKey, secret, key
}
}
opts.sign.publicKey = publicKey
opts.sign.secretKey = secretKey
opts.segment.key = key
if (null !== nonce) {
opts.segment.nonce = nonce
}
push(Compile, input, opts.compile)
push(Bundle, opts.bundle)
push(Segment, opts.segment)
push(Sign, opts.sign)
push(Codegen, opts.codegen)
push(Bundle, opts.bundle)
let previous = null
for (const step of steps) {
queue.push((next) => {
if (null !== previous) {
hook('afterstep', step)
}
process.nextTick(() => {
hook('beforestep', step)
step.start((...args) => {
hook('step', step, ...args)
previous = step
next(...args)
})
})
})
}
await pify(queue.end.bind(queue))()
return {
input, steps, publicKey, secretKey, secret, key
}
function hook(name, ...args) {
const k = `on${name}`
if ('function' === typeof opts[k]) {
try {
opts[k](...args)
} catch (err) {
debug(err)
return hook('error', err)
}
}
}
function push(Step, ...args) {
steps.push(new Step(steps[steps.length - 1], ...args))
}
}
module.exports = start