# frozen_string_literal: true
module Xml
module Kit
module Crypto
class UnknownCipher
attr_reader :algorithm, :key
def initialize(algorithm, key)
@algorithm = algorithm
@key = key
end
def self.matches?(_algorithm)
true
end
def decrypt(cipher_text)
cipher_text
end
end
end
end
end