var path = require('path');
var fs = require('fs');
var crypto = require('crypto');
var algorithm = 'aes-256-ctr';
var password = 'xxxxx';
var dir = '/Users/antkong/some/path';
var file = 'somefile.json';
var clearTextPath = path.join(dir, file);
var cipher = crypto.createCipheriv(algorithm, password);
var readStream = fs.createReadStream(clearTextPath);
var writeStream = fs.createWriteStream(path.join(dir, file + '.encrypted'));
readStream.pipe(cipher).pipe(writeStream);
Тогда я получил эту ошибку:
internal/crypto/cipher.js:139
this._handle.initiv(cipher, toBuf(key), toBuf(iv));
^
TypeError: IV must be a buffer
at new Cipheriv (internal/crypto/cipher.js:139:16)
at Object.createCipheriv (crypto.js:98:10)
Версия моего узла 9.11.1
Я проверил, что исходные файлы существуют.
Почемуэто не удалось?Он работал в более старой версии узла (ранее, чем версия 8.x)