mirror of
https://github.com/tuneinsight/lattigo.git
synced 2025-09-13 03:27:14 +00:00
13 lines
250 B
Go
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
|
|
}
|