From 21c7d69f56ec1f29464684f18cd048f7db5e10ad Mon Sep 17 00:00:00 2001 From: Stig P Date: Mon, 3 Feb 2020 14:10:19 +0000 Subject: [PATCH] Fix typo in symmetric encryption example in README.md (#1042) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7911ab22..d2ded723 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,7 @@ Encryption will use the algorithm specified in config.encryption_cipher (default }); const encrypted = message.packets.write(); // get raw encrypted packets as Uint8Array - const { data: decrypted } = await openpgp.encrypt({ + const { data: decrypted } = await openpgp.decrypt({ message: await openpgp.message.read(encrypted), // parse encrypted bytes passwords: ['secret stuff'], // decrypt with password format: 'binary' // output as Uint8Array