Adds ACVP test coverage for ML-KEM based on the NIST spec: https://pages.nist.gov/ACVP/draft-celi-acvp-ml-kem.html Notably we need to update the BoringSSL module version because the acvptool was only recently updated to support testing ML-KEM. A few non-test updates are also required for the crypto/internal/fips140/mlkem package: * For keyGen tests a new ExpandedBytes768() function is added that converts a DecapsualtionKey768 struct into the expanded NIST serialization. The existing Bytes() function returns the key's seed, while ACVP testing requires the more cumbersome format. * For decap tests a new TestingOnlyNewDecapsulationKey768() constructor is added to produce a DecapsulationKey768 struct from the expanded FIPS 203 serialization provided by the ACVP test vector. The pre-existing NewDecapsulationKey768() function expects a seed as input. The generate1024.go helper is updated to translate the above changes to the generated mlkem1024.go implementation. Both of these new functions are exclusively for ACVP usage and so not present in the public mlkem API. End users should always prefer to work with seeds. Updates #69642 Change-Id: I79784f8a8db00a2ddefdcece4b8de50b033c8f69 Reviewed-on: https://go-review.googlesource.com/c/go/+/637439 Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org> Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> |
||
|---|---|---|
| .github | ||
| api | ||
| doc | ||
| lib | ||
| misc | ||
| src | ||
| test | ||
| .gitattributes | ||
| .gitignore | ||
| CONTRIBUTING.md | ||
| LICENSE | ||
| PATENTS | ||
| README.md | ||
| SECURITY.md | ||
| codereview.cfg | ||
| go.env | ||
README.md
The Go Programming Language
Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.
Gopher image by Renee French, licensed under Creative Commons 4.0 Attribution license.
Our canonical Git repository is located at https://go.googlesource.com/go. There is a mirror of the repository at https://github.com/golang/go.
Unless otherwise noted, the Go source files are distributed under the BSD-style license found in the LICENSE file.
Download and Install
Binary Distributions
Official binary distributions are available at https://go.dev/dl/.
After downloading a binary release, visit https://go.dev/doc/install for installation instructions.
Install From Source
If a binary distribution is not available for your combination of operating system and architecture, visit https://go.dev/doc/install/source for source installation instructions.
Contributing
Go is the work of thousands of contributors. We appreciate your help!
To contribute, please read the contribution guidelines at https://go.dev/doc/contribute.
Note that the Go project uses the issue tracker for bug reports and proposals only. See https://go.dev/wiki/Questions for a list of places to ask questions about the Go language.