代码拉取完成,页面将自动刷新
package dongle
import (
"fmt"
"golang.org/x/crypto/bcrypt"
)
type BcryptError struct {
}
func NewBcryptError() BcryptError {
return BcryptError{}
}
func (e BcryptError) RoundsError() error {
return fmt.Errorf("bcrypt: invalid rounds, the rounds at least 4 and at most 31")
}
// ByBcrypt signs by bcrypt.
func (s Signer) ByBcrypt(rounds ...int) Signer {
if len(s.src) == 0 || s.Error != nil {
return s
}
if len(rounds) == 0 {
// 10 is the standard number of rounds in bcrypt.
rounds = []int{10}
}
dst, err := bcrypt.GenerateFromPassword(s.src, rounds[0])
if rounds[0] < 4 || rounds[0] > 31 || err != nil {
s.Error = NewBcryptError().RoundsError()
return s
}
s.dst = dst
return s
}
// ByBcrypt verify by bcrypt.
func (v Verifier) ByBcrypt() Verifier {
if len(v.src) == 0 || v.Error != nil {
return v
}
v.Error = bcrypt.CompareHashAndPassword(v.sign, v.src)
return v
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。