Advertisement
Guest User

Untitled

a guest
Oct 21st, 2014
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. gpg --verify file.txt
  2.  
  3. gpg --import example.com/key.sig --verify file.txt
  4.  
  5. export GNUPGHOME=/tmp/gpg-verify
  6. curl http://example.com/key.asc | gpg --import
  7. gpg --verify file.txt
  8. rm -r /tmp/gpg-verify
  9.  
  10. curl http://www.example.com/signature.asc | gpg --verify file.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement