@@ -4,7 +4,7 @@ const assert = require('nanoassert')
4
4
const clone = require ( 'clone' )
5
5
6
6
function createHandshake ( { dh, hash, cipher, symmetricState, cipherState } ) {
7
- var DhResult = sodium_malloc ( dh . DHLEN )
7
+ const DhResult = sodium_malloc ( dh . DHLEN )
8
8
9
9
function HandshakeState ( ) {
10
10
this . symmetricState = sodium_malloc ( symmetricState . STATELEN )
@@ -34,9 +34,9 @@ function createHandshake ({ dh, hash, cipher, symmetricState, cipherState }) {
34
34
assert ( rs == null ? true : rs . byteLength === dh . PKLEN , `rs must be ${ dh . PKLEN } bytes` )
35
35
assert ( re == null ? true : re . byteLength === dh . PKLEN , `re must be ${ dh . PKLEN } bytes` )
36
36
37
- var state = new HandshakeState ( )
37
+ const state = new HandshakeState ( )
38
38
39
- var protocolName = Uint8Array . from ( `Noise_${ handshakePattern } _${ dh . ALG } _${ cipher . ALG } _${ hash . ALG } ` , toCharCode )
39
+ const protocolName = Uint8Array . from ( `Noise_${ handshakePattern } _${ dh . ALG } _${ cipher . ALG } _${ hash . ALG } ` , toCharCode )
40
40
41
41
symmetricState . initializeSymmetric ( state . symmetricState , protocolName )
42
42
symmetricState . mixHash ( state . symmetricState , prologue )
@@ -69,12 +69,12 @@ function createHandshake ({ dh, hash, cipher, symmetricState, cipherState }) {
69
69
}
70
70
71
71
// hashing
72
- var pat = PATTERNS [ handshakePattern ]
72
+ const pat = PATTERNS [ handshakePattern ]
73
73
74
- for ( var pattern of clone ( pat . premessages ) ) {
75
- var patternRole = pattern . shift ( )
74
+ for ( const pattern of clone ( pat . premessages ) ) {
75
+ const patternRole = pattern . shift ( )
76
76
77
- for ( var token of pattern ) {
77
+ for ( const token of pattern ) {
78
78
switch ( token ) {
79
79
case TOK_E :
80
80
assert ( state . role === patternRole ? state . epk . byteLength != null : state . re . byteLength != null )
@@ -105,14 +105,14 @@ function createHandshake ({ dh, hash, cipher, symmetricState, cipherState }) {
105
105
assert ( payload . byteLength != null )
106
106
assert ( messageBuffer . byteLength != null )
107
107
108
- var mpat = state . messagePatterns . shift ( )
109
- var moffset = 0
108
+ const mpat = state . messagePatterns . shift ( )
109
+ let moffset = 0
110
110
111
111
assert ( mpat != null )
112
112
113
113
assert ( state . role === mpat . shift ( ) )
114
114
115
- for ( var token of mpat ) {
115
+ for ( const token of mpat ) {
116
116
switch ( token ) {
117
117
case TOK_E :
118
118
assert ( state . epk == null )
@@ -175,8 +175,8 @@ function createHandshake ({ dh, hash, cipher, symmetricState, cipherState }) {
175
175
writeMessage . bytes = moffset
176
176
177
177
if ( state . messagePatterns . length === 0 ) {
178
- var tx = sodium_malloc ( cipherState . STATELEN )
179
- var rx = sodium_malloc ( cipherState . STATELEN )
178
+ const tx = sodium_malloc ( cipherState . STATELEN )
179
+ const rx = sodium_malloc ( cipherState . STATELEN )
180
180
symmetricState . split ( state . symmetricState , tx , rx , dh . DHLEN , dh . PKLEN )
181
181
182
182
return { tx, rx }
@@ -189,13 +189,13 @@ function createHandshake ({ dh, hash, cipher, symmetricState, cipherState }) {
189
189
assert ( message . byteLength != null )
190
190
assert ( payloadBuffer . byteLength != null )
191
191
192
- var mpat = state . messagePatterns . shift ( )
193
- var moffset = 0
192
+ const mpat = state . messagePatterns . shift ( )
193
+ let moffset = 0
194
194
195
195
assert ( mpat != null )
196
196
assert ( mpat . shift ( ) !== state . role )
197
197
198
- for ( var token of mpat ) {
198
+ for ( const token of mpat ) {
199
199
switch ( token ) {
200
200
case TOK_E :
201
201
assert ( state . re == null )
@@ -210,11 +210,11 @@ function createHandshake ({ dh, hash, cipher, symmetricState, cipherState }) {
210
210
211
211
break
212
212
213
- case TOK_S :
213
+ case TOK_S : {
214
214
assert ( state . rs == null )
215
215
state . rs = sodium_malloc ( dh . PKLEN )
216
216
217
- var bytes = 0
217
+ let bytes = 0
218
218
if ( symmetricState . _hasKey ( state . symmetricState ) ) {
219
219
bytes = dh . PKLEN + 16
220
220
} else {
@@ -232,6 +232,7 @@ function createHandshake ({ dh, hash, cipher, symmetricState, cipherState }) {
232
232
moffset += symmetricState . decryptAndHash . bytesRead
233
233
234
234
break
235
+ }
235
236
case TOK_EE :
236
237
dh . dh ( DhResult , state . esk , state . re )
237
238
symmetricState . mixKey ( state . symmetricState , DhResult )
@@ -269,8 +270,8 @@ function createHandshake ({ dh, hash, cipher, symmetricState, cipherState }) {
269
270
readMessage . bytes = symmetricState . decryptAndHash . bytesWritten
270
271
271
272
if ( state . messagePatterns . length === 0 ) {
272
- var tx = sodium_malloc ( cipherState . STATELEN )
273
- var rx = sodium_malloc ( cipherState . STATELEN )
273
+ const tx = sodium_malloc ( cipherState . STATELEN )
274
+ const rx = sodium_malloc ( cipherState . STATELEN )
274
275
symmetricState . split ( state . symmetricState , rx , tx , dh . DHLEN , dh . PKLEN )
275
276
276
277
return { tx, rx }
@@ -293,7 +294,7 @@ function createHandshake ({ dh, hash, cipher, symmetricState, cipherState }) {
293
294
}
294
295
295
296
function seedKeygen ( seed ) {
296
- var obj = { publicKey : sodium_malloc ( dh . PKLEN ) , secretKey : sodium_malloc ( dh . SKLEN ) }
297
+ const obj = { publicKey : sodium_malloc ( dh . PKLEN ) , secretKey : sodium_malloc ( dh . SKLEN ) }
297
298
dh . generateSeedKeypair ( obj . publicKey , obj . secretKey , seed )
298
299
return obj
299
300
}
@@ -323,7 +324,7 @@ const TOK_SS = Symbol('es')
323
324
324
325
// initiator, ->
325
326
// responder, <-
326
- var PATTERNS = Object . freeze ( {
327
+ const PATTERNS = Object . freeze ( {
327
328
N : {
328
329
premessages : [
329
330
[ RESPONDER , TOK_S ]
@@ -452,7 +453,7 @@ var PATTERNS = Object.freeze({
452
453
} )
453
454
454
455
function sodiumBufferCopy ( src ) {
455
- var buf = sodium_malloc ( src . byteLength )
456
+ const buf = sodium_malloc ( src . byteLength )
456
457
buf . set ( src )
457
458
return buf
458
459
}
0 commit comments