mirror of https://github.com/minio/minio.git
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