instance method
fixed?
Ruby on Rails 8.0.4
Since v7.0.10Signature
fixed?()
No documentation comment.
Source
# File activerecord/lib/active_record/encryption/scheme.rb, line 52
def fixed?
# by default deterministic encryption is fixed
@fixed ||= @deterministic && (!@deterministic.is_a?(Hash) || @deterministic[:fixed])
end
Defined in activerecord/lib/active_record/encryption/scheme.rb line 52
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Encryption::Scheme