instance method
fixed?
Ruby on Rails 7.0.10
Since v7.0.10Signature
fixed?()
No documentation comment.
Source
# File activerecord/lib/active_record/encryption/scheme.rb, line 42
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 42
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Encryption::Scheme