aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/sha256/sha256_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/sha256/sha256_test.go')
-rw-r--r--src/crypto/sha256/sha256_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/crypto/sha256/sha256_test.go b/src/crypto/sha256/sha256_test.go
index 433c5a4c5e..13178fb21f 100644
--- a/src/crypto/sha256/sha256_test.go
+++ b/src/crypto/sha256/sha256_test.go
@@ -16,6 +16,8 @@ import (
"testing"
)
+import "crypto/internal/boring"
+
type sha256Test struct {
out string
in string
@@ -216,6 +218,9 @@ func TestBlockSize(t *testing.T) {
// Tests that blockGeneric (pure Go) and block (in assembly for some architectures) match.
func TestBlockGeneric(t *testing.T) {
+ if boring.Enabled {
+ t.Skip("BoringCrypto doesn't expose digest")
+ }
gen, asm := New().(*digest), New().(*digest)
buf := make([]byte, BlockSize*20) // arbitrary factor
rand.Read(buf)