diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2024-02-25 14:32:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-25 13:32:13 +0000 |
commit | f79c9e817abaef279c0b33d5460a066170dd3ea6 (patch) | |
tree | bc0ca11ec487aab8458fe78e89a6d21d50baa53b /modules/util/keypair_test.go | |
parent | ad0a34b492c3d41952ff4648c8bfb7b54c376151 (diff) | |
download | gitea-f79c9e817abaef279c0b33d5460a066170dd3ea6.tar.gz gitea-f79c9e817abaef279c0b33d5460a066170dd3ea6.zip |
Use `crypto/sha256` (#29386)
Go 1.21 improved the performance of `crypto/sha256`. It's now similar to
`minio/sha256-simd`, so we should just use the standard libs.
https://go.dev/doc/go1.21#crypto/sha256
https://go-review.googlesource.com/c/go/+/408795
https://github.com/multiformats/go-multihash/pull/173
Diffstat (limited to 'modules/util/keypair_test.go')
-rw-r--r-- | modules/util/keypair_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/util/keypair_test.go b/modules/util/keypair_test.go index c9925f7988..c6f68c845a 100644 --- a/modules/util/keypair_test.go +++ b/modules/util/keypair_test.go @@ -7,12 +7,12 @@ import ( "crypto" "crypto/rand" "crypto/rsa" + "crypto/sha256" "crypto/x509" "encoding/pem" "regexp" "testing" - "github.com/minio/sha256-simd" "github.com/stretchr/testify/assert" ) |