mirror of
https://github.com/tuneinsight/lattigo.git
synced 2025-09-13 03:27:14 +00:00
11 lines
228 B
Go
11 lines
228 B
Go
// Package integer implements advanced homomorphic circuit for encrypted arithmetic modular arithmetic with integers.
|
|
package integer
|
|
|
|
import (
|
|
"github.com/tuneinsight/lattigo/v4/bgv"
|
|
)
|
|
|
|
type Integer interface {
|
|
bgv.Integer
|
|
}
|