1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/lib/active_record/encryption.rb

56 lines
1.2 KiB
Ruby
Raw Normal View History

2021-03-10 18:13:00 -05:00
# frozen_string_literal: true
require "active_support/core_ext/module"
require "active_support/core_ext/array"
module ActiveRecord
module Encryption
extend ActiveSupport::Autoload
eager_autoload do
autoload :Cipher
autoload :Config
autoload :Configurable
autoload :Context
autoload :Contexts
autoload :DerivedSecretKeyProvider
autoload :EncryptableRecord
autoload :EncryptedAttributeType
autoload :EncryptedFixtures
autoload :EncryptingOnlyEncryptor
autoload :DeterministicKeyProvider
autoload :Encryptor
autoload :EnvelopeEncryptionKeyProvider
autoload :Errors
autoload :ExtendedDeterministicQueries
2021-03-22 13:13:59 -04:00
autoload :ExtendedDeterministicUniquenessValidator
autoload :Key
autoload :KeyGenerator
autoload :KeyProvider
autoload :Message
autoload :MessageSerializer
autoload :NullEncryptor
autoload :Properties
autoload :ReadOnlyNullEncryptor
autoload :Scheme
end
class Cipher
extend ActiveSupport::Autoload
eager_autoload do
autoload :Aes256Gcm
end
end
include Configurable
include Contexts
def self.eager_load!
super
Cipher.eager_load!
end
end
end