1 // Package sig stubs crypto/internal/boring/sig 2 package sig 3 4 // BoringCrypto indicates that the BoringCrypto module is present. 5 func BoringCrypto() { 6 7 } 8 9 // FIPSOnly indicates that package crypto/tls/fipsonly is present. 10 func FIPSOnly() { 11 12 } 13 14 // StandardCrypto indicates that standard Go crypto is present. 15 func StandardCrypto() { 16 17 } 18