aboutsummaryrefslogtreecommitdiff
path: root/lib/keyringer/decrypt.rb
blob: 9f872aaa8d846ee5d86178481ca82d2da2962d82 (plain)
1
2
3
4
5
6
7
8
9
10
module Keyringer
  class Decrypt
    def execute
      filename = ARGV[2]
      crypt    = Keyring::Crypt.new
      output   = crypt.decrypt(filename)
      return output
    end
  end
end