notboring.go 721 B

12345678910111213141516171819
  1. // Copyright 2022 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. package tls
  5. func needFIPS() bool { return false }
  6. func supportedSignatureAlgorithms() []SignatureScheme {
  7. return defaultSupportedSignatureAlgorithms
  8. }
  9. func fipsMinVersion(c *Config) uint16 { panic("fipsMinVersion") }
  10. func fipsMaxVersion(c *Config) uint16 { panic("fipsMaxVersion") }
  11. func fipsCurvePreferences(c *Config) []CurveID { panic("fipsCurvePreferences") }
  12. func fipsCipherSuites(c *Config) []uint16 { panic("fipsCipherSuites") }
  13. var fipsSupportedSignatureAlgorithms []SignatureScheme
  14. var defaultCipherSuitesTLS13FIPS []uint16