From e14a3c78b74d8297e07377fe4a3e79017210ea58 Mon Sep 17 00:00:00 2001 From: Daniel Huigens Date: Sat, 1 Feb 2020 23:29:01 +0100 Subject: [PATCH] Add instructions to pipe unarmored encrypted data on Node.js --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index fbbabc69..7911ab22 100644 --- a/README.md +++ b/README.md @@ -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); })(); ```