nicholasjackson/minke

View on GitHub
lib/minke/encryption/key_locator.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Minke
  module Encryption
    class KeyLocator
      def initialize(key_store_path)
        @key_store_path = key_store_path
      end

      def locate_key fingerprint
        Dir.entries(@key_store_path).each do |f|
          begin
            full_path = "#{@key_store_path}/#{f}"
            key = SSHKey.new(File.read(full_path))

            return full_path if key.fingerprint == fingerprint
          rescue

          end
        end

        return nil
      end
    end
  end
end