mirror of
https://github.com/minio/minio.git
synced 2024-12-24 06:05:55 -05:00
Use optimized sha256-simd whenever possible (#8227)
Avoid using `crypto/sha256` and use always `github.com/minio/sha256-simd`
This commit is contained in:
parent
8700945cdf
commit
e7f491a14b
@ -19,7 +19,6 @@ package cmd
|
||||
import (
|
||||
"bytes"
|
||||
"context"
|
||||
"crypto/sha256"
|
||||
"encoding/hex"
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
@ -28,6 +27,8 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/minio/sha256-simd"
|
||||
|
||||
"github.com/minio/minio/cmd/logger"
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user