From e26fafa1320c6dbb72492d3154962761a904bcbf Mon Sep 17 00:00:00 2001 From: Cabinfever_B Date: Thu, 26 Oct 2023 20:04:35 +0800 Subject: [PATCH] fips Signed-off-by: Cabinfever_B --- pkg/versioninfo/fips.go | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkg/versioninfo/fips.go diff --git a/pkg/versioninfo/fips.go b/pkg/versioninfo/fips.go new file mode 100644 index 00000000000..02478b103fa --- /dev/null +++ b/pkg/versioninfo/fips.go @@ -0,0 +1,26 @@ +// Copyright 2023 TiKV Project Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//go:build boringcrypto +// +build boringcrypto + +package versioninfo + +import ( + _ "crypto/tls/fipsonly" +) + +func init() { + PDReleaseVersion += "-fips" +}