From 950d469560a9b1f0a75a685730a4262f2c1eca16 Mon Sep 17 00:00:00 2001 From: Tom Thorogood Date: Wed, 1 Feb 2023 21:50:06 +1030 Subject: [PATCH] Use untyped consts for Kyber --- pke/kyber/internal/common/params/params.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pke/kyber/internal/common/params/params.go b/pke/kyber/internal/common/params/params.go index f7fe31ab..dee58ee9 100644 --- a/pke/kyber/internal/common/params/params.go +++ b/pke/kyber/internal/common/params/params.go @@ -8,10 +8,10 @@ const ( Q int16 = 3329 // N is the parameter N: the length of the polynomials - N int = 256 + N = 256 // PolySize is the size of a packed polynomial. - PolySize int = 384 + PolySize = 384 // PlaintextSize is the size of the plaintext PlaintextSize = 32