mirror of
https://github.com/zebrajr/node.git
synced 2025-12-07 12:20:50 +01:00
Several changes:
* Soft-Deprecate Buffer() constructors
* Add `Buffer.from()`, `Buffer.alloc()`, and `Buffer.allocUnsafe()`
* Add `--zero-fill-buffers` command line option
* Add byteOffset and length to `new Buffer(arrayBuffer)` constructor
* buffer.fill('') previously had no effect, now zero-fills
* Update the docs
PR-URL: https://github.com/nodejs/node/pull/4682
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
25 lines
537 B
JavaScript
25 lines
537 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
return;
|
|
}
|
|
var crypto = require('crypto');
|
|
|
|
function test() {
|
|
var odd = Buffer.alloc(39, 'A');
|
|
|
|
var c = crypto.createDiffieHellman(32);
|
|
c.setPrivateKey(odd);
|
|
c.generateKeys();
|
|
}
|
|
|
|
// FIPS requires a length of at least 1024
|
|
if (!common.hasFipsCrypto) {
|
|
assert.doesNotThrow(function() { test(); });
|
|
} else {
|
|
assert.throws(function() { test(); }, /key size too small/);
|
|
}
|