Parcourir la source

pkg/ioutils use sha256 instead of sha1 in tests

Not really important as it's just test-code, but prevents
gosec linting from producing warnings

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn il y a 6 ans
Parent
commit
4215492120
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      pkg/ioutils/bytespipe_test.go

+ 2 - 2
pkg/ioutils/bytespipe_test.go

@@ -1,7 +1,7 @@
 package ioutils // import "github.com/docker/docker/pkg/ioutils"
 
 import (
-	"crypto/sha1"
+	"crypto/sha256"
 	"encoding/hex"
 	"math/rand"
 	"testing"
@@ -77,7 +77,7 @@ func TestBytesPipeWriteRandomChunks(t *testing.T) {
 
 	for _, c := range cases {
 		// first pass: write directly to hash
-		hash := sha1.New()
+		hash := sha256.New()
 		for i := 0; i < c.iterations*c.writesPerLoop; i++ {
 			if _, err := hash.Write(testMessage[:writeChunks[i%len(writeChunks)]]); err != nil {
 				t.Fatal(err)