Sha256: 507838011ce4bc961d533d96fdc4f51bc4350c2a5da52171e8800af58238955d
Contents?: true
Size: 507 Bytes
Versions: 20
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
20 entries across 20 versions & 2 rubygems