summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar guilhem <guilhem@web>2013-03-08 14:25:20 +0000
committerGravatar admin <admin@branchable.com>2013-03-08 14:25:20 +0000
commitbd580f035f8cc58a594dd0724631c8b3ee07cab9 (patch)
tree8a02c9a860cc0bfefe7c96c99dcd3a6a644c4eab
parent4d017492ed07a9c86132a1d8c5148c5b4e69776a (diff)
-rw-r--r--doc/forum/wishlist:_GnuPG_options.mdwn14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/forum/wishlist:_GnuPG_options.mdwn b/doc/forum/wishlist:_GnuPG_options.mdwn
new file mode 100644
index 000000000..aa11f13ca
--- /dev/null
+++ b/doc/forum/wishlist:_GnuPG_options.mdwn
@@ -0,0 +1,14 @@
+[Maybe I should have on [[this thread|http://git-annex.branchable.com/forum/wishlist:_simpler_gpg_usage/]], but I figured I'd make my own since it's perhaps too old.]
+
+I second Justin and [[his idea|http://git-annex.branchable.com/forum/wishlist:_simpler_gpg_usage/#comment-e120f8ede0d4cffce17cbf84564211c1]] of having per-remote GnuPG options. I'd even go one step further, and propose the option in the <tt>.gitattributes</tt> file. Indeed by default GnuPG compresses the data before encryption, which doesn't make a lot of sense for git-annex (in my use-case at least); My work-around to save this waste of CPU cycles was to customize my <tt>gpg.conf</tt>, but it's somewhat dirty since I do want to use compression in general.
+
+Here is how I envision the <tt>.git/config</tt>:
+<pre> <code>[annex]
+ gnupg-options = --s2k-cipher-algo AES256 --s2k-digest-algo SHA512 --s2k-count 8388608 --cipher-algo AES256 --compress-algo none
+</code></pre>
+
+And compression could be enabled on say, text files, with a suitable wildcard in the <tt>.gitattributes</tt> file.
+<pre> <code>*.txt annex.gnupg-options = --s2k-cipher-algo AES256 --s2k-digest-algo SHA512 --s2k-count 8388608 --cipher-algo AES256 --compress-algo zlib
+</code></pre>
+
+This is something I could probably hack on if you think it'd be a worthwhile option ;-)