Files
lattigo/multiparty/mpbgv/test_parameters.go
2024-08-06 14:46:08 +02:00

18 lines
443 B
Go

package mpbgv
import "github.com/tuneinsight/lattigo/v6/schemes/bgv"
var (
// testInsecure are insecure parameters used for the sole purpose of fast testing.
testInsecure = bgv.ParametersLiteral{
LogN: 10,
Q: []uint64{0x3fffffa8001, 0x1000090001, 0x10000c8001, 0x10000f0001, 0xffff00001},
P: []uint64{0x7fffffd8001},
}
testPlaintextModulus = []uint64{0x101, 0xffc001}
testParams = []bgv.ParametersLiteral{testInsecure}
)