Source file src/crypto/tls/fipsonly/fipsonly_test.go
1 // Copyright 2017 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 //go:build boringcrypto 6 7 package fipsonly 8 9 import ( 10 "crypto/internal/boring/fipstls" 11 "testing" 12 ) 13 14 func Test(t *testing.T) { 15 if !fipstls.Required() { 16 t.Fatal("fipstls.Required() = false, must be true") 17 } 18 } 19