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
Extract from https://github.com/microsoft/go-lab/blob/main/docs/adr/0007-comply-microsoft-policy-by-default-with-go-toolchain.md:
We will update the toolchain to use the system crypto by default, removing the related experiments and implement the nosystemcrypto tag.
nosystemcrypto
Additionally, we will implement the following migration plan for current GOEXPERIMENT users:
GOEXPERIMENT=systemcrypto
GOEXPERIMENT=opensslcrypto
GOEXPERIMENT=cngcrypto
GOEXPERIMENT
go build
The text was updated successfully, but these errors were encountered:
go version -m app
No branches or pull requests
Extract from https://github.com/microsoft/go-lab/blob/main/docs/adr/0007-comply-microsoft-policy-by-default-with-go-toolchain.md:
We will update the toolchain to use the system crypto by default, removing the related experiments and implement the
nosystemcrypto
tag.Additionally, we will implement the following migration plan for current GOEXPERIMENT users:
GOEXPERIMENT=systemcrypto
,GOEXPERIMENT=opensslcrypto
, andGOEXPERIMENT=cngcrypto
options will be deprecated.GOEXPERIMENT
value is used,go build
will print a warning message to stderr, although the functionality will remain intact.GOEXPERIMENT
values will be removed, and a dedicated error message will be displayed.The text was updated successfully, but these errors were encountered: