mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 03:57:36 +03:00
This reverts commit 7383b2a4db5dc93c9b875b42d5add73d27cc4b9f ("crypto/internal/boring: upgrade module to fips-20220613") and commit 4106de901a8efe914cda6f6c4e8d45ff8c115da4 ("crypto/tls: align FIPS-only mode with BoringSSL policy"). Fixes #65321 Updates #64717 Updates #62372 Change-Id: I0938b97e5b4904e6532448b8ae76e920d03d0508 Reviewed-on: https://go-review.googlesource.com/c/go/+/558796 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Roland Shoemaker <roland@golang.org> Auto-Submit: Filippo Valsorda <filippo@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
20 lines
705 B
Go
20 lines
705 B
Go
// Copyright 2022 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !boringcrypto
|
|
|
|
package tls
|
|
|
|
func needFIPS() bool { return false }
|
|
|
|
func supportedSignatureAlgorithms() []SignatureScheme {
|
|
return defaultSupportedSignatureAlgorithms
|
|
}
|
|
|
|
func fipsMinVersion(c *Config) uint16 { panic("fipsMinVersion") }
|
|
func fipsMaxVersion(c *Config) uint16 { panic("fipsMaxVersion") }
|
|
func fipsCurvePreferences(c *Config) []CurveID { panic("fipsCurvePreferences") }
|
|
func fipsCipherSuites(c *Config) []uint16 { panic("fipsCipherSuites") }
|
|
|
|
var fipsSupportedSignatureAlgorithms []SignatureScheme
|