Compare commits

...

2 Commits

Author SHA1 Message Date
AI Engineer
5e3986160d chore: align dependencies 2026-05-05 22:03:57 +08:00
AI Engineer
6817848373 chore: update dependencies and remove .gitignore 2026-05-05 21:57:53 +08:00
3 changed files with 18 additions and 5 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
go.sum

16
go.mod
View File

@ -3,14 +3,22 @@ module apigo.cc/go/crypto-sm
go 1.25.0
require (
apigo.cc/go/crypto v1.0.4
apigo.cc/go/encoding v1.0.4
apigo.cc/go/safe v1.0.4
apigo.cc/go/crypto v1.0.5
apigo.cc/go/encoding v1.0.5
apigo.cc/go/safe v1.0.5
github.com/emmansun/gmsm v0.28.0
)
require (
apigo.cc/go/rand v1.0.4 // indirect
apigo.cc/go/rand v1.0.5 // indirect
golang.org/x/crypto v0.50.0 // indirect
golang.org/x/sys v0.43.0 // indirect
)
replace apigo.cc/go/crypto => ../crypto
replace apigo.cc/go/encoding => ../encoding
replace apigo.cc/go/safe => ../safe
replace apigo.cc/go/rand => ../rand

6
go.sum Normal file
View File

@ -0,0 +1,6 @@
github.com/emmansun/gmsm v0.28.0 h1:0WyTHmQgaAfM8IwMnNMJCfEiK999cZ2J8csfcZ2Ooco=
github.com/emmansun/gmsm v0.28.0/go.mod h1:9lKtK8f3c7wh2z0g6fsqRbay69V1jWYDcBaytyuR95M=
golang.org/x/crypto v0.50.0 h1:zO47/JPrL6vsNkINmLoo/PH1gcxpls50DNogFvB5ZGI=
golang.org/x/crypto v0.50.0/go.mod h1:3muZ7vA7PBCE6xgPX7nkzzjiUq87kRItoJQM1Yo8S+Q=
golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI=
golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=