mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-02-07 13:31:21 +00:00
11 lines
230 B
Go
11 lines
230 B
Go
// Copyright 2023 the Pinniped contributors. All Rights Reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//go:build go1.20
|
|
|
|
package tlsassertions
|
|
|
|
func GetTLSErrorPrefix() string {
|
|
return "tls: failed to verify certificate: "
|
|
}
|