params.go raw

   1  // Code generated from params.templ.go. DO NOT EDIT.
   2  
   3  package internal
   4  
   5  import (
   6  	"github.com/cloudflare/circl/pke/kyber/internal/common"
   7  )
   8  
   9  const (
  10  	K             = 3
  11  	Eta1          = 2
  12  	DU            = 10
  13  	DV            = 4
  14  	PublicKeySize = 32 + K*common.PolySize
  15  
  16  	PrivateKeySize = K * common.PolySize
  17  
  18  	PlaintextSize  = common.PlaintextSize
  19  	SeedSize       = 32
  20  	CiphertextSize = 1088
  21  )
  22