We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GO langauage has the support to skip server TLS verification on the client. This is for Nodes which does not have SAN inscribed in their certificate.
If we set InsecureSkipVerify to true to tell the client to skip the verification
tlsConfig := &tls.Config{ InsecureSkipVerify: true, }
Can you please implement this? It will help a lot of us to connect to stubborn nodes whose certificates are hardcoded with non-compatible SAN values.
grpc/grpc-go#4396 (comment)
protoc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
GO langauage has the support to skip server TLS verification on the client. This is for Nodes which does not have SAN inscribed in their certificate.
If we set InsecureSkipVerify to true to tell the client to skip the verification
tlsConfig := &tls.Config{
InsecureSkipVerify: true,
}
Can you please implement this? It will help a lot of us to connect to stubborn nodes whose certificates are hardcoded with non-compatible SAN values.
grpc/grpc-go#4396 (comment)
To reproduce
Expected behavior
Screenshots
Environment
protoc
version:protoc
plugin version (if you are using):Additional context
The text was updated successfully, but these errors were encountered: