main
 1# frozen_string_literal: true
 2
 3module Xml
 4  module Kit
 5    module Crypto
 6      class UnknownCipher
 7        attr_reader :algorithm, :key
 8
 9        def initialize(algorithm, key)
10          @algorithm = algorithm
11          @key = key
12        end
13
14        def self.matches?(_algorithm)
15          true
16        end
17
18        def decrypt(cipher_text)
19          cipher_text
20        end
21      end
22    end
23  end
24end