Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 822 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 822 Bytes

Muna

  1. (verb) (-ia) to talk privately.
  2. (stative) be confidential, anonymous, secretly.
  3. (noun) secret, confidentiality, secrecy.

Simple React app for encrypting secrets so that you can email then, post in Jira, etc. It's like Muna but client side, using keybase/kbpgp for encryption.

Configuration

Public keys

Recipients's public keys should be provided in src/recipients.js file.

Example:

var data = [
  "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQENBF...v9x/\n-----END PGP PUBLIC KEY BLOCK-----\n",
  "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\eVTogBC...uhV/\n-----END PGP PUBLIC KEY BLOCK-----\n"
]
module.exports = {gpgKeys: data};

Also look at src/recipients.js.example.