Symmetric and private keys can be set in whisper

This commit is contained in:
Richard Ramos 2018-07-16 10:23:11 -04:00 committed by Pascal Precht
parent 0629f757a9
commit 05d1a6fe3a
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
2 changed files with 16 additions and 1 deletions

View File

@ -36,5 +36,12 @@ module.exports = {
// "embark run custom_name" // "embark run custom_name"
//custom_name: { //custom_name: {
//} //}
// Use this section when you need a specific symmetric or private keys in whisper
/*
,keys: {
symmetricKey: "your_symmetric_key",// Symmetric key for message decryption
privateKey: "your_private_key" // Private Key to be used as a signing key and for message decryption
}
*/
//}
}; };

View File

@ -36,4 +36,12 @@ module.exports = {
// "embark run custom_name" // "embark run custom_name"
//custom_name: { //custom_name: {
//} //}
// Use this section when you need a specific symmetric or private keys in whisper
/*
,keys: {
symmetricKey: "your_symmetric_key",// Symmetric key for message decryption
privateKey: "your_private_key" // Private Key to be used as a signing key and for message decryption
}
*/
//}
}; };