aboutsummaryrefslogtreecommitdiff
path: root/lib/keyring/crypt.rb
diff options
context:
space:
mode:
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