Selaa lähdekoodia

gpg-zip: add page (#2392)

Saif Azmi 6 vuotta sitten
vanhempi
commit
f7b073cc49
1 muutettua tiedostoa jossa 15 lisäystä ja 0 poistoa
  1. 15 0
      pages/common/gpg-zip.md

+ 15 - 0
pages/common/gpg-zip.md

@@ -0,0 +1,15 @@
+# gpg-zip
+
+> Encrypt files and directories in an archive using GPG.
+
+- Encrypt a directory into archive.gpg using a passphrase:
+
+`gpg-zip --symmetric --output {{archive.gpg}} {{path/to/directory}}`
+
+- Decrypt archive.gpg into a directory of the same name:
+
+`gpg-zip --decrypt {{path/to/archive.gpg}}`
+
+- List the contents of the encrypted archive.gpg:
+
+`gpg-zip --list-archive {{path/to/archive.gpg}}`