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 7package fipsonly 8 9import ( 10 "crypto/internal/boring/fipstls" 11 "testing" 12) 13 14func Test(t *testing.T) { 15 if !fipstls.Required() { 16 t.Fatal("fipstls.Required() = false, must be true") 17 } 18} 19