Sha256: 507838011ce4bc961d533d96fdc4f51bc4350c2a5da52171e8800af58238955d

Contents?: true

Size: 507 Bytes

Versions: 23

Compression:

Stored size: 507 Bytes

Contents

# frozen_string_literal: true

module ActiveRecord
  module Encryption
    # An encryptor that won't decrypt or encrypt. It will just return the passed
    # values
    class NullEncryptor
      def encrypt(clean_text, key_provider: nil, cipher_options: {})
        clean_text
      end

      def decrypt(encrypted_text, key_provider: nil, cipher_options: {})
        encrypted_text
      end

      def encrypted?(text)
        false
      end

      def binary?
        false
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 2 rubygems

Version Path
activerecord-7.2.0.beta3 lib/active_record/encryption/null_encryptor.rb
activerecord-7.2.0.beta2 lib/active_record/encryption/null_encryptor.rb
activerecord-7.2.0.beta1 lib/active_record/encryption/null_encryptor.rb