在数据库

时间:2017-06-14 14:12:44

标签: go hash byte bcrypt go-gorm

我正在使用Golang中的API,我使用Gorm作为ORM。目前我遇到了[]字节字段的问题,我将它在我的结构中定义为:

type Member struct {
    MyField              []byte     `gorm:"column:MyField" schema:"-"`
}

然后,我有保存和读取该资源的方法,因此保存它时的值与我正在读取的值不同。例如,我使用bcrypt生成哈希密码,尝试使用12345,结果是:

[36 50 97 36 49 48 36 46 56 98 88 72 82 71 113 66 100 65 105 103 70 119 114 97 73 77 99 78 117 106 54 78 103 88 68 49 56 110 103 112 105 86
104 79 117 47 114 57 116 51 47 53 97 100 109 103 106 46 68 109]

直到一切正常,然后当我从数据库中读取寄存器并打印出该值时,我得到:

[36 50 97 36 48 52 36 56 49 67 66 121 118 90 47 47 104 49 83 120 50 108 112 71 73 51 67 88 46 97 52 74 54 66 84 73 106 105 110 122 98 69 90 51
78 113 67 66 49 103 50 56 116 47 57 120 78 103 109 54]

他们不同,为什么? 我使用gorm创建表,该列的类型在我的postgres数据库中定义为 bytea

代码

要保存:

bs, err := bcrypt.GenerateFromPassword([]byte(Pass), bcrypt.DefaultCost)    

if err != nil {
        fmt.Println("Hey error!")
}
user.MyField = bs
db.Create(&user)

阅读:     db.First(安培;用户,ID) fmt.Println(user.MyField)

1 个答案:

答案 0 :(得分:1)

我认为你的问题在 db.First(& user,id)中是错误的。可能你的生错了。我试图重现错误而我不能。以下代码工作正常。

my_secret_key = Chef::EncryptedDataBagItem.load_secret("/tmp/secret")
my_secret_databag = Chef::EncryptedDataBagItem.load(“userdata”,”xyz”, my_secret_key)

user 'devops' do
  comment 'devops user' 
  uid 101
  home '/home/devops'
  shell '/bin/bash'
  password my_secret_databag['password']
end