Sha256: e887b6a9d46acce14238c6f61c5b7543756cf7ca174fd6de50e6f36d0afde70a

Contents?: true

Size: 376 Bytes

Versions: 1

Compression:

Stored size: 376 Bytes

Contents

module Match
  module Encryption
    class Interface
      # Call this method to trigger the actual
      # encryption
      def encrypt_files(password: nil)
        not_implemented(__method__)
      end

      # Call this method to trigger the actual
      # decryption
      def decrypt_files
        not_implemented(__method__)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fastlane_hotfix-2.187.0 match/lib/match/encryption/interface.rb