Fix typo in symmetric encryption example in README.md (#1042)

This commit is contained in:
Stig P 2020-02-03 14:10:19 +00:00 committed by GitHub
parent 93c5bed64b
commit 21c7d69f56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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