forked from openpgpjs/openpgpjs
-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
Dependencies:
expo = 20.0.0
react = 16.0.0-alpha.12
react-native = 0.47.0
react-native-openpgp = 1.0.3
var options, encrypted;
options = {
data: 'Hello, World!', // input as String
passwords: ['secret stuff'] // multiple passwords possible
};
openpgp.encrypt(options)
.then((ciphertext) => {
encrypted = ciphertext.data; // '-----BEGIN PGP MESSAGE ... END PGP MESSAGE-----'
})
.catch((error) => {
console.log("Something went wrong: " + error);
});
Got Unhanded promise rejection error when try to execute above code example
Possible Unhandled Promise Rejection (id: 0):
Object {}
@orhan will you please guide me, where I am doing wrong.
Thanks
Metadata
Metadata
Assignees
Labels
No labels