19
19
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20
20
// USE OR OTHER DEALINGS IN THE SOFTWARE.
21
21
22
+ // Note: In 0.8 and before, crypto functions all defaulted to using
23
+ // binary-encoded strings rather than buffers.
24
+
25
+ exports . DEFAULT_ENCODING = 'buffer' ;
22
26
23
27
try {
24
28
var binding = process . binding ( 'crypto' ) ;
@@ -137,15 +141,17 @@ function Hash(algorithm) {
137
141
}
138
142
139
143
Hash . prototype . update = function ( data , encoding ) {
144
+ encoding = encoding || exports . DEFAULT_ENCODING ;
140
145
if ( encoding === 'buffer' )
141
146
encoding = null ;
142
- if ( encoding || typeof data === 'string' )
147
+ if ( typeof data === 'string' )
143
148
data = new Buffer ( data , encoding ) ;
144
149
this . _binding . update ( data ) ;
145
150
return this ;
146
151
} ;
147
152
148
153
Hash . prototype . digest = function ( outputEncoding ) {
154
+ outputEncoding = outputEncoding || exports . DEFAULT_ENCODING ;
149
155
var result = this . _binding . digest ( 'buffer' ) ;
150
156
if ( outputEncoding && outputEncoding !== 'buffer' )
151
157
result = result . toString ( outputEncoding ) ;
@@ -191,6 +197,8 @@ function Cipher(cipher, password) {
191
197
}
192
198
193
199
Cipher . prototype . update = function ( data , inputEncoding , outputEncoding ) {
200
+ inputEncoding = inputEncoding || exports . DEFAULT_ENCODING ;
201
+ outputEncoding = outputEncoding || exports . DEFAULT_ENCODING ;
194
202
if ( inputEncoding && inputEncoding !== 'buffer' )
195
203
data = new Buffer ( data , inputEncoding ) ;
196
204
@@ -205,6 +213,7 @@ Cipher.prototype.update = function(data, inputEncoding, outputEncoding) {
205
213
} ;
206
214
207
215
Cipher . prototype . final = function ( outputEncoding ) {
216
+ outputEncoding = outputEncoding || exports . DEFAULT_ENCODING ;
208
217
var ret = this . _binding . final ( 'buffer' ) ;
209
218
210
219
if ( outputEncoding && outputEncoding !== 'buffer' ) {
@@ -296,6 +305,7 @@ Sign.prototype.sign = function(key, encoding) {
296
305
if ( typeof key === 'string' )
297
306
key = new Buffer ( key , 'binary' ) ;
298
307
308
+ encoding = encoding || exports . DEFAULT_ENCODING ;
299
309
var ret = this . _binding . sign ( key , 'buffer' ) ;
300
310
if ( encoding && encoding !== 'buffer' )
301
311
ret = ret . toString ( encoding ) ;
@@ -319,6 +329,7 @@ Verify.prototype.verify = function(object, signature, sigEncoding) {
319
329
if ( typeof object === 'string' )
320
330
object = new Buffer ( object , 'binary' ) ;
321
331
332
+ sigEncoding = sigEncoding || exports . DEFAULT_ENCODING ;
322
333
if ( sigEncoding === 'buffer' )
323
334
sigEncoding = null ;
324
335
if ( sigEncoding || typeof signature === 'string' )
@@ -336,22 +347,26 @@ function DiffieHellman(sizeOrKey, encoding) {
336
347
if ( ! sizeOrKey )
337
348
this . _binding = new binding . DiffieHellman ( ) ;
338
349
else {
350
+ encoding = encoding || exports . DEFAULT_ENCODING ;
339
351
if ( encoding === 'buffer' )
340
352
encoding = null ;
341
- if ( encoding || typeof sizeOrKey === 'string' )
353
+ if ( typeof sizeOrKey === 'string' )
342
354
sizeOrKey = new Buffer ( sizeOrKey , encoding ) ;
343
355
this . _binding = new binding . DiffieHellman ( sizeOrKey , 'buffer' ) ;
344
356
}
345
357
}
346
358
347
359
DiffieHellman . prototype . generateKeys = function ( encoding ) {
348
360
var keys = this . _binding . generateKeys ( 'buffer' ) ;
349
- if ( encoding )
361
+ encoding = encoding || exports . DEFAULT_ENCODING ;
362
+ if ( encoding && encoding !== 'buffer' )
350
363
keys = keys . toString ( encoding ) ;
351
364
return keys ;
352
365
} ;
353
366
354
367
DiffieHellman . prototype . computeSecret = function ( key , inEnc , outEnc ) {
368
+ inEnc = inEnc || exports . DEFAULT_ENCODING ;
369
+ outEnc = outEnc || exports . DEFAULT_ENCODING ;
355
370
if ( inEnc === 'buffer' )
356
371
inEnc = null ;
357
372
if ( outEnc === 'buffer' )
@@ -366,33 +381,38 @@ DiffieHellman.prototype.computeSecret = function(key, inEnc, outEnc) {
366
381
367
382
DiffieHellman . prototype . getPrime = function ( encoding ) {
368
383
var prime = this . _binding . getPrime ( 'buffer' ) ;
384
+ encoding = encoding || exports . DEFAULT_ENCODING ;
369
385
if ( encoding && encoding !== 'buffer' )
370
386
prime = prime . toString ( encoding ) ;
371
387
return prime ;
372
388
} ;
373
389
374
390
DiffieHellman . prototype . getGenerator = function ( encoding ) {
375
391
var generator = this . _binding . getGenerator ( 'buffer' ) ;
392
+ encoding = encoding || exports . DEFAULT_ENCODING ;
376
393
if ( encoding && encoding !== 'buffer' )
377
394
generator = generator . toString ( encoding ) ;
378
395
return generator ;
379
396
} ;
380
397
381
398
DiffieHellman . prototype . getPublicKey = function ( encoding ) {
382
399
var key = this . _binding . getPublicKey ( 'buffer' ) ;
400
+ encoding = encoding || exports . DEFAULT_ENCODING ;
383
401
if ( encoding && encoding !== 'buffer' )
384
402
key = key . toString ( encoding ) ;
385
403
return key ;
386
404
} ;
387
405
388
406
DiffieHellman . prototype . getPrivateKey = function ( encoding ) {
389
407
var key = this . _binding . getPrivateKey ( 'buffer' ) ;
408
+ encoding = encoding || exports . DEFAULT_ENCODING ;
390
409
if ( encoding && encoding !== 'buffer' )
391
410
key = key . toString ( encoding ) ;
392
411
return key ;
393
412
} ;
394
413
395
414
DiffieHellman . prototype . setPublicKey = function ( key , encoding ) {
415
+ encoding = encoding || exports . DEFAULT_ENCODING ;
396
416
if ( encoding === 'buffer' )
397
417
encoding = null ;
398
418
if ( encoding || typeof key === 'string' )
@@ -402,6 +422,7 @@ DiffieHellman.prototype.setPublicKey = function(key, encoding) {
402
422
} ;
403
423
404
424
DiffieHellman . prototype . setPrivateKey = function ( key , encoding ) {
425
+ encoding = encoding || exports . DEFAULT_ENCODING ;
405
426
if ( encoding === 'buffer' )
406
427
encoding = null ;
407
428
if ( encoding || typeof key === 'string' )
@@ -445,7 +466,22 @@ exports.pbkdf2 = function(password, salt, iterations, keylen, callback) {
445
466
password = new Buffer ( password , 'binary' ) ;
446
467
if ( typeof salt === 'string' )
447
468
salt = new Buffer ( salt , 'binary' ) ;
448
- return binding . PBKDF2 ( password , salt , iterations , keylen , callback ) ;
469
+
470
+ if ( exports . DEFAULT_ENCODING === 'buffer' )
471
+ return binding . PBKDF2 ( password , salt , iterations , keylen , callback ) ;
472
+
473
+ // at this point, we need to handle encodings.
474
+ var encoding = exports . DEFAULT_ENCODING ;
475
+ if ( callback ) {
476
+ binding . PBKDF2 ( password , salt , iterations , keylen , function ( er , ret ) {
477
+ if ( ret )
478
+ ret = ret . toString ( encoding ) ;
479
+ callback ( er , ret ) ;
480
+ } ) ;
481
+ } else {
482
+ var ret = binding . PBKDF2 ( password , salt , iterations , keylen ) ;
483
+ return ret . toString ( encoding ) ;
484
+ }
449
485
} ;
450
486
451
487
exports . pbkdf2Sync = function ( password , salt , iterations , keylen ) {
0 commit comments