crypto/internal/mlkem768: add EncapsulationKey type

Change-Id: I3feacb044caa15ac9bbfc11f5d90bebf8a505510
Reviewed-on: https://go-review.googlesource.com/c/go/+/621980
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Roland Shoemaker <roland@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Reviewed-by: Russ Cox <rsc@golang.org>
This commit is contained in:
Filippo Valsorda 2024-10-21 14:30:46 +02:00 committed by Gopher Robot
parent 3e14e25cf0
commit 5a893857d7
3 changed files with 8 additions and 7 deletions

View file

@ -124,7 +124,7 @@ func TestKyberEncapsulate(t *testing.T) {
if err != nil {
t.Fatal(err)
}
ct, ss, err := kyberEncapsulate(dk.EncapsulationKey())
ct, ss, err := kyberEncapsulate(dk.EncapsulationKey().Bytes())
if err != nil {
t.Fatal(err)
}