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// Package sig holds “code signatures” that can be called 6// and will result in certain code sequences being linked into 7// the final binary. The functions themselves are no-ops. 8package sig 9 10// BoringCrypto indicates that the BoringCrypto module is present. 11func BoringCrypto() 12 13// FIPSOnly indicates that package crypto/tls/fipsonly is present. 14func FIPSOnly() 15 16// StandardCrypto indicates that standard Go crypto is present. 17func StandardCrypto() 18