Add instructions to pipe unarmored encrypted data on Node.js

This commit is contained in:
Daniel Huigens 2020-02-01 23:29:01 +01:00
parent b49e787ba9
commit e14a3c78b7

View File

@ -302,6 +302,10 @@ Where the value can be any of:
if (done) break;
console.log('new chunk:', value); // Uint8Array
}
// Or, in Node.js, you can pipe the above stream as follows:
const nodeStream = openpgp.stream.webToNode(encrypted);
nodeStream.pipe(nodeWritableStream);
})();
```