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

13 lines
250 B
Go

package multiparty
import (
"github.com/tuneinsight/lattigo/v6/utils/sampling"
)
// CRS is an interface for Common Reference Strings.
// CRSs are PRNGs for which the read bits are the same for
// all parties.
type CRS interface {
sampling.PRNG
}