summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-04-15 22:06:17 +0100
committerLars Wirzenius <liw@liw.fi>2011-04-15 22:06:17 +0100
commit50e18b6a18609247eae1b34c77fddcbcf260e42a (patch)
treecc8289d334213a62f7f8d3bb7ecf41728e61f9c4
parentaa8b785a0f56fe06b2c3349353512612ed61e066 (diff)
downloadobnam-50e18b6a18609247eae1b34c77fddcbcf260e42a.tar.gz
Fix symmetric key length.
Thanks to Joey Hess for pointing this out. The old size was left there while I was frantically testing things, and quickly depleting my entropy pool.
-rw-r--r--obnamlib/plugins/encryption_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/obnamlib/plugins/encryption_plugin.py b/obnamlib/plugins/encryption_plugin.py
index 240aad70..1e9396bb 100644
--- a/obnamlib/plugins/encryption_plugin.py
+++ b/obnamlib/plugins/encryption_plugin.py
@@ -22,7 +22,7 @@ import obnamlib
class EncryptionPlugin(obnamlib.ObnamPlugin):
- symmetric_key_bits = 8
+ symmetric_key_bits = 256
def enable(self):
self.app.config.new_string(['encrypt-with'],