尝试创建加密列时出现问题。OS X 10.9.5
使用 gnupg 2.0.22 创建公钥/私钥:
gpg -a --export > myKey .key.pub
gpg -a --export-secret-key myKey > .key.prv
关于这里可能发生的事情的任何指示?我有一个添加了 ssn 字段迁移的模型:
add_column :users, :ssn, :binary
在用户模型中
has_encrypted_column :ssn
向开发数据库添加了 pgcrpyto 扩展
在 config/initializers/pgcrypto.rb
PGCrypto.keys[.public] = {path: '.key.pub'}
PGCrypto.keys[.private] = {path: '.key.prv',armored: true, password: 'myPassword'}
导轨 c
User.create(username:'x',ssn:'123-45-6789')
收到此错误,列是 ssn,所以看起来它正在做正确的事情
TypeError: wrong argument type Arel::Nodes::BindParam (expected String)
from ... /vendor/ruby/2.2.0/gems/activerecord-4.2.0/lib/active_record/connection_adapters/postgresql/quoting.rb:19:in `escape_string'
from ... /vendor/ruby/2.2.0/gems/activerecord-4.2.0/lib/active_record/connection_adapters/postgresql/quoting.rb:19:in `quote_string'
from ... /vendor/ruby/2.2.0/gems/pgcrypto-0.4.1/lib/pgcrypto/adapter.rb:51:in `pgcrypto_encrypt_string'
以下****是我假设错误所在但不确定在此处调用什么方法:找不到太多关于 Arel::Nodes::BindParam 的文档。我假设这应该将值设置为“123-45-6789”,然后使用 pgcrypto_encrypt_string 调用对其进行加密。我验证了密钥是正确的。
57 def pgcrypto_insert(arel)
58 if table = PGCrypto[arel.ast.relation.name.to_s]
59 arel.ast.columns.each_with_index do |column, i|
60 if options = table[column.name.to_sym]
61 key = options[:key] || PGCrypto.keys[:public]
62 next unless key
63 # Encrypt encryptable columns
64 ***** value = arel.ast.values.expressions[i]
65 arel.ast.values.expressions[i] = pgcrypto_encrypt_string(value, key)
66 end
67 end
68 end
69 end
任何指针都非常感谢。很高兴在弄清楚时分叉并执行拉取请求。