added helpful comment about default encryption and decryption of U8intArray with password
This commit is contained in:
parent
6f9670cc65
commit
2f1f901fdf
24
README.md
24
README.md
|
@ -5,7 +5,7 @@ OpenPGP.js [](https://saucelabs.com/u/openpgpjs)
|
[](https://saucelabs.com/u/openpgpjs)
|
||||||
|
|
||||||
<!-- markdown-toc start - Don't edit this section. Run M-x markdown-toc-generate-toc again -->
|
<!-- markdown-toc start - Don't edit this section. Run M-x markdown-toc-generate-toc again -->
|
||||||
**Table of Contents**
|
**Table of Contents**
|
||||||
|
|
||||||
|
@ -124,6 +124,8 @@ openpgp.initWorker({ path:'openpgp.worker.js' }) // set the relative web worker
|
||||||
|
|
||||||
#### Encrypt and decrypt *Uint8Array* data with a password
|
#### Encrypt and decrypt *Uint8Array* data with a password
|
||||||
|
|
||||||
|
This is encryption/decryption method will use AES-256 by default.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
var options, encrypted;
|
var options, encrypted;
|
||||||
|
|
||||||
|
@ -154,7 +156,7 @@ openpgp.decrypt(options).then(function(plaintext) {
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const openpgp = require('openpgp') // use as CommonJS, AMD, ES6 module or via window.openpgp
|
const openpgp = require('openpgp') // use as CommonJS, AMD, ES6 module or via window.openpgp
|
||||||
|
|
||||||
openpgp.initWorker({ path:'openpgp.worker.js' }) // set the relative web worker path
|
openpgp.initWorker({ path:'openpgp.worker.js' }) // set the relative web worker path
|
||||||
|
|
||||||
// put keys in backtick (``) to avoid errors caused by spaces or tabs
|
// put keys in backtick (``) to avoid errors caused by spaces or tabs
|
||||||
|
@ -169,13 +171,13 @@ const passphrase = `yourPassphrase` //what the privKey is encrypted with
|
||||||
const encryptDecryptFunction = async() => {
|
const encryptDecryptFunction = async() => {
|
||||||
const privKeyObj = (await openpgp.key.readArmored(privkey)).keys[0]
|
const privKeyObj = (await openpgp.key.readArmored(privkey)).keys[0]
|
||||||
await privKeyObj.decrypt(passphrase)
|
await privKeyObj.decrypt(passphrase)
|
||||||
|
|
||||||
const options = {
|
const options = {
|
||||||
message: openpgp.message.fromText('Hello, World!'), // input as Message object
|
message: openpgp.message.fromText('Hello, World!'), // input as Message object
|
||||||
publicKeys: (await openpgp.key.readArmored(pubkey)).keys, // for encryption
|
publicKeys: (await openpgp.key.readArmored(pubkey)).keys, // for encryption
|
||||||
privateKeys: [privKeyObj] // for signing (optional)
|
privateKeys: [privKeyObj] // for signing (optional)
|
||||||
}
|
}
|
||||||
|
|
||||||
openpgp.encrypt(options).then(ciphertext => {
|
openpgp.encrypt(options).then(ciphertext => {
|
||||||
encrypted = ciphertext.data // '-----BEGIN PGP MESSAGE ... END PGP MESSAGE-----'
|
encrypted = ciphertext.data // '-----BEGIN PGP MESSAGE ... END PGP MESSAGE-----'
|
||||||
return encrypted
|
return encrypted
|
||||||
|
@ -186,12 +188,12 @@ const encryptDecryptFunction = async() => {
|
||||||
publicKeys: (await openpgp.key.readArmored(pubkey)).keys, // for verification (optional)
|
publicKeys: (await openpgp.key.readArmored(pubkey)).keys, // for verification (optional)
|
||||||
privateKeys: [privKeyObj] // for decryption
|
privateKeys: [privKeyObj] // for decryption
|
||||||
}
|
}
|
||||||
|
|
||||||
openpgp.decrypt(options).then(plaintext => {
|
openpgp.decrypt(options).then(plaintext => {
|
||||||
console.log(plaintext.data)
|
console.log(plaintext.data)
|
||||||
return plaintext.data // 'Hello, World!'
|
return plaintext.data // 'Hello, World!'
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -203,7 +205,7 @@ Encrypt with multiple public keys:
|
||||||
```js
|
```js
|
||||||
const pubkeys = [`-----BEGIN PGP PUBLIC KEY BLOCK-----
|
const pubkeys = [`-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
...
|
...
|
||||||
-----END PGP PUBLIC KEY BLOCK-----`,
|
-----END PGP PUBLIC KEY BLOCK-----`,
|
||||||
`-----BEGIN PGP PUBLIC KEY BLOCK-----
|
`-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
...
|
...
|
||||||
-----END PGP PUBLIC KEY BLOCK-----`
|
-----END PGP PUBLIC KEY BLOCK-----`
|
||||||
|
@ -216,17 +218,17 @@ const message = 'Hello, World!' // input as Message object
|
||||||
async encryptWithMultiplePublicKeys(pubkeys, privkey, passphrase, message) {
|
async encryptWithMultiplePublicKeys(pubkeys, privkey, passphrase, message) {
|
||||||
const privKeyObj = (await openpgp.key.readArmored(privkey)).keys[0]
|
const privKeyObj = (await openpgp.key.readArmored(privkey)).keys[0]
|
||||||
await privKeyObj.decrypt(passphrase)
|
await privKeyObj.decrypt(passphrase)
|
||||||
|
|
||||||
pubkeys = pubkeys.map(async (key) => {
|
pubkeys = pubkeys.map(async (key) => {
|
||||||
return (await openpgp.key.readArmored(key)).keys[0]
|
return (await openpgp.key.readArmored(key)).keys[0]
|
||||||
});
|
});
|
||||||
|
|
||||||
const options = {
|
const options = {
|
||||||
message: openpgp.message.fromText(message),
|
message: openpgp.message.fromText(message),
|
||||||
publicKeys: pubkeys, // for encryption
|
publicKeys: pubkeys, // for encryption
|
||||||
privateKeys: [privKeyObj] // for signing (optional)
|
privateKeys: [privKeyObj] // for signing (optional)
|
||||||
}
|
}
|
||||||
|
|
||||||
return openpgp.encrypt(options).then(ciphertext => {
|
return openpgp.encrypt(options).then(ciphertext => {
|
||||||
encrypted = ciphertext.data // '-----BEGIN PGP MESSAGE ... END PGP MESSAGE-----'
|
encrypted = ciphertext.data // '-----BEGIN PGP MESSAGE ... END PGP MESSAGE-----'
|
||||||
return encrypted
|
return encrypted
|
||||||
|
|
Loading…
Reference in New Issue
Block a user