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