AEAD: Fix high water mark calculation based on chunk size

Use current packet's chunk size instead of default chunk size.
This commit is contained in:
Daniel Huigens 2019-10-15 18:17:22 +02:00
parent 192893ecf0
commit 3ee77f9e50

View File

@ -139,7 +139,7 @@ SymEncryptedAEADProtected.prototype.crypt = async function (fn, key, data, strea
return stream.transformPair(data, async (readable, writable) => {
const reader = stream.getReader(readable);
const buffer = new TransformStream({}, {
highWaterMark: streaming ? util.getHardwareConcurrency() * 2 ** (config.aead_chunk_size_byte + 6) : Infinity,
highWaterMark: streaming ? util.getHardwareConcurrency() * 2 ** (this.chunkSizeByte + 6) : Infinity,
size: array => array.length
});
stream.pipe(buffer.readable, writable);