aboutsummaryrefslogtreecommitdiff
path: root/lib/keyring/crypt.rb
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-01-22 18:24:55 -0200
committerSilvio Rhatto <rhatto@riseup.net>2011-01-22 18:24:55 -0200
commit7382be9d83bc5f95ad8d184b95c379ca5b9d1725 (patch)
tree5ad086f30f59f22e27d427cab1e30ef5282ddbf0 /lib/keyring/crypt.rb
parent42fdb4e702f1235ad6f4ae099f8d265e498a62d4 (diff)
downloadkeyringer-7382be9d83bc5f95ad8d184b95c379ca5b9d1725.tar.gz
keyringer-7382be9d83bc5f95ad8d184b95c379ca5b9d1725.tar.bz2
Code split into backend, keyring and keyringer modules
Diffstat (limited to 'lib/keyring/crypt.rb')
-rw-r--r--lib/keyring/crypt.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/keyring/crypt.rb b/lib/keyring/crypt.rb
new file mode 100644
index 0000000..5968730
--- /dev/null
+++ b/lib/keyring/crypt.rb
@@ -0,0 +1,10 @@
+module Keyring
+ class Crypt
+ def decrypt(filename)
+ file = Fs.new()
+ content = file.get_as_string(filename)
+ crypt = Backend::Crypt.new(nil)
+ return crypt.decrypt(content)
+ end
+ end
+end