一种不会解密或加密的加密器。它只会返回传入的值
方法
实例公共方法
binary?() 链接
源代码: 显示 | 在 GitHub 上
# File activerecord/lib/active_record/encryption/null_encryptor.rb, line 20 def binary? false end
decrypt(encrypted_text, key_provider: nil, cipher_options: {}) 链接
源代码: 显示 | 在 GitHub 上
# File activerecord/lib/active_record/encryption/null_encryptor.rb, line 12 def decrypt(encrypted_text, key_provider: nil, cipher_options: {}) encrypted_text end
encrypt(clean_text, key_provider: nil, cipher_options: {}) 链接
源代码: 显示 | 在 GitHub 上
# File activerecord/lib/active_record/encryption/null_encryptor.rb, line 8 def encrypt(clean_text, key_provider: nil, cipher_options: {}) clean_text end
encrypted?(text) 链接
源代码: 显示 | 在 GitHub 上
# File activerecord/lib/active_record/encryption/null_encryptor.rb, line 16 def encrypted?(text) false end