mirror of
https://github.com/xiaoqidun/idkey.git
synced 2025-07-12 22:01:47 +08:00
Compare commits
10 Commits
010073a6c0
...
v1.0.5
Author | SHA1 | Date | |
---|---|---|---|
a2cc489c96 | |||
61175b11c8 | |||
c8d79e8791 | |||
c88c500314 | |||
5f48988ade | |||
070f86013a | |||
c0ecb85a53 | |||
0eae46dfb5 | |||
87a2045616 | |||
4b6cac9d6f |
@ -1,4 +1,4 @@
|
|||||||
# idkey
|
# idkey [](https://pkg.go.dev/github.com/xiaoqidun/idkey)
|
||||||
Golang Argon2id 密码hash和验证
|
Golang Argon2id 密码hash和验证
|
||||||
# 安装方法
|
# 安装方法
|
||||||
go get -u github.com/xiaoqidun/idkey
|
go get -u github.com/xiaoqidun/idkey
|
||||||
|
6
go.mod
6
go.mod
@ -1,5 +1,7 @@
|
|||||||
module github.com/xiaoqidun/idkey
|
module github.com/xiaoqidun/idkey
|
||||||
|
|
||||||
go 1.15
|
go 1.20
|
||||||
|
|
||||||
require golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de
|
require golang.org/x/crypto v0.21.0
|
||||||
|
|
||||||
|
require golang.org/x/sys v0.18.0 // indirect
|
||||||
|
12
go.sum
12
go.sum
@ -1,8 +1,4 @@
|
|||||||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA=
|
||||||
golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de h1:ikNHVSjEfnvz6sxdSPCaPt572qowuyMDMJLLm3Db3ig=
|
golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs=
|
||||||
golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
|
golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4=
|
||||||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
|
||||||
golang.org/x/sys v0.0.0-20190412213103-97732733099d h1:+R4KGOnez64A81RvjARKc4UT5/tI9ujCIVX+P5KiHuI=
|
|
||||||
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
|
||||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
|
||||||
|
5
idkey.go
5
idkey.go
@ -10,12 +10,14 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Data 密文编码结构
|
||||||
type Data struct {
|
type Data struct {
|
||||||
EncodeOptions // 加密选项
|
EncodeOptions // 加密选项
|
||||||
Hash []byte // 密码密文
|
Hash []byte // 密码密文
|
||||||
Salt []byte // 加密盐值
|
Salt []byte // 加密盐值
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// EncodeOptions 密文编码选项
|
||||||
type EncodeOptions struct {
|
type EncodeOptions struct {
|
||||||
Time uint32 // 时间参数
|
Time uint32 // 时间参数
|
||||||
Memory uint32 // 内存参数
|
Memory uint32 // 内存参数
|
||||||
@ -23,6 +25,7 @@ type EncodeOptions struct {
|
|||||||
KeyLen uint32 // 密文长度
|
KeyLen uint32 // 密文长度
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Encode 将密码编码成密文
|
||||||
func Encode(password []byte, options *EncodeOptions) string {
|
func Encode(password []byte, options *EncodeOptions) string {
|
||||||
salt := generateSalt(16)
|
salt := generateSalt(16)
|
||||||
data := &Data{
|
data := &Data{
|
||||||
@ -58,6 +61,7 @@ func Encode(password []byte, options *EncodeOptions) string {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Decode 获取密文编码结构
|
||||||
func Decode(passwordHash string) (data *Data, err error) {
|
func Decode(passwordHash string) (data *Data, err error) {
|
||||||
data = &Data{}
|
data = &Data{}
|
||||||
params := strings.Split(passwordHash, "$")
|
params := strings.Split(passwordHash, "$")
|
||||||
@ -102,6 +106,7 @@ func Decode(passwordHash string) (data *Data, err error) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Verify 验证密码编码后是否等于密文
|
||||||
func Verify(password []byte, passwordHash string) bool {
|
func Verify(password []byte, passwordHash string) bool {
|
||||||
data, err := Decode(passwordHash)
|
data, err := Decode(passwordHash)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Reference in New Issue
Block a user