Guest User

Untitled

a guest
May 18th, 2018
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. # Sender
  2. gpg --encrypt --recipient recipient@gmail.com --output confidential.pgp confidential.txt
  3. gpg -–sign –-local-user sender@gmail.com --output signed.pgp confidential.pgp
  4.  
  5. # Recipient
  6. gpg --decrypt –output confidential.pgp signed.pgp
  7. gpg --decrypt –output confidential.txt confidential.gpg
  8.  
  9. # Sender
  10. gpg -–sign –-local-user sender@gmail.com --encrypt --recipient recipient@gmail.com --output signed.pgp confidential.txt
  11.  
  12. # Recipient
  13. gpg --decrypt –output confidential.txt signed.pgp
Add Comment
Please, Sign In to add comment