use std::cell::RefCell;
use tracing::instrument;
use feanor_math::ring::*;
use feanor_math::homomorphism::*;
use feanor_math::integer::*;
use feanor_math::group::*;
use feanor_math::primitive_int::*;
use feanor_math::delegate::*;
use feanor_math::seq::*;
use crate::bfv::{BFVInstantiation, PlaintextRing, CiphertextRing, Ciphertext, SecretKey, KeySwitchKey, RelinKey};
use crate::circuit::*;
use crate::number_ring::*;
use crate::number_ring::galois::*;
use crate::bfv::DefaultCircuitEvaluator;
use crate::prepared_mul::PreparedMultiplicationRing;
use crate::{ZZi64, ZZbig};
pub trait AsBFVPlaintext<Params: BFVInstantiation>: RingBase {
fn hom_add(
&self,
P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
m: &Self::Element,
ct: Ciphertext<Params>
) -> Ciphertext<Params>;
fn hom_mul(
&self,
P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
m: &Self::Element,
ct: Ciphertext<Params>
) -> Ciphertext<Params>;
fn hom_fma(
&self,
P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
dst: Ciphertext<Params>,
lhs: &Self::Element,
rhs: &Ciphertext<Params>
) -> Ciphertext<Params> {
Params::hom_add(C, dst, &self.hom_mul(P, C, lhs, Params::clone_ct(C, rhs)))
}
fn apply_galois_action_plain(
&self,
P: &PlaintextRing<Params>,
x: &Self::Element,
gs: &[GaloisGroupEl]
) -> Vec<Self::Element>;
}
impl<R, Params> AsBFVPlaintext<Params> for R
where R: NumberRingQuotient,
Params: BFVInstantiation,
Params::PlaintextRing: CanHomFrom<R>
{
default fn hom_add(
&self,
P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
m: &Self::Element,
ct: Ciphertext<Params>
) -> Ciphertext<Params> {
Params::hom_add_plain(P, C, &P.can_hom(RingValue::from_ref(self)).unwrap().map_ref(m), ct)
}
default fn hom_mul(
&self,
P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
m: &Self::Element,
ct: Ciphertext<Params>
) -> Ciphertext<Params> {
Params::hom_mul_plain(P, C, &P.can_hom(RingValue::from_ref(self)).unwrap().map_ref(m), ct)
}
default fn apply_galois_action_plain(
&self,
_P: &PlaintextRing<Params>,
x: &Self::Element,
gs: &[GaloisGroupEl]
) -> Vec<Self::Element> {
self.apply_galois_action_many(x, gs)
}
}
impl<Params: BFVInstantiation> AsBFVPlaintext<Params> for StaticRingBase<i64> {
fn hom_add(
&self,
P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
m: &Self::Element,
ct: Ciphertext<Params>
) -> Ciphertext<Params> {
Params::hom_add_plain(P, C, &P.inclusion().compose(P.base_ring().can_hom(&ZZi64).unwrap()).map(*m), ct)
}
fn hom_mul(
&self,
P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
m: &Self::Element,
ct: Ciphertext<Params>
) -> Ciphertext<Params> {
Params::hom_mul_plain_int(P, C, &int_cast(*m, ZZbig, ZZi64), ct)
}
fn hom_fma(
&self,
P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
dst: Ciphertext<Params>,
lhs: &Self::Element,
rhs: &Ciphertext<Params>
) -> Ciphertext<Params> {
Params::hom_fma_plain_int(P, C, dst, &int_cast(*lhs, ZZbig, ZZi64), rhs)
}
fn apply_galois_action_plain(
&self,
_P: &PlaintextRing<Params>,
x: &Self::Element,
gs: &[GaloisGroupEl]
) -> Vec<Self::Element> {
gs.iter().map(|_| self.clone_el(x)).collect()
}
}
impl<Params: BFVInstantiation> AsBFVPlaintext<Params> for BigIntRingBase {
fn hom_add(
&self,
P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
m: &Self::Element,
ct: Ciphertext<Params>
) -> Ciphertext<Params> {
Params::hom_add_plain(P, C, &P.inclusion().compose(P.base_ring().can_hom(&ZZbig).unwrap()).map_ref(m), ct)
}
fn hom_mul(
&self,
P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
m: &Self::Element,
ct: Ciphertext<Params>
) -> Ciphertext<Params> {
Params::hom_mul_plain_int(P, C, m, ct)
}
fn hom_fma(
&self,
P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
dst: Ciphertext<Params>,
lhs: &Self::Element,
rhs: &Ciphertext<Params>
) -> Ciphertext<Params> {
Params::hom_fma_plain_int(P, C, dst, lhs, rhs)
}
fn apply_galois_action_plain(
&self,
_P: &PlaintextRing<Params>,
x: &Self::Element,
gs: &[GaloisGroupEl]
) -> Vec<Self::Element> {
gs.iter().map(|_| self.clone_el(x)).collect()
}
}
pub struct EncodedBFVPlaintextRingBase<Params: BFVInstantiation> {
P: PlaintextRing<Params>,
C: CiphertextRing<Params>
}
pub type EncodedBFVPlaintextRing<Params> = RingValue<EncodedBFVPlaintextRingBase<Params>>;
pub struct EncodedBFVPlaintextRingEl<Params: BFVInstantiation> {
el: El<PlaintextRing<Params>>,
encoded: El<CiphertextRing<Params>>,
prepared: <<CiphertextRing<Params> as RingStore>::Type as PreparedMultiplicationRing>::PreparedMultiplicant
}
impl<Params: BFVInstantiation> EncodedBFVPlaintextRingBase<Params> {
pub fn new(P: PlaintextRing<Params>, C: CiphertextRing<Params>) -> RingValue<Self> {
RingValue::from(Self { P, C })
}
pub fn plaintext_ring(&self) -> &PlaintextRing<Params> {
&self.P
}
pub fn ciphertext_ring(&self) -> &CiphertextRing<Params> {
&self.C
}
}
impl<Params: BFVInstantiation> PartialEq for EncodedBFVPlaintextRingBase<Params> {
fn eq(&self, other: &Self) -> bool {
self.P.get_ring() == other.P.get_ring() && self.C.get_ring() == other.C.get_ring()
}
}
impl<Params: BFVInstantiation> DelegateRing for EncodedBFVPlaintextRingBase<Params> {
type Element = EncodedBFVPlaintextRingEl<Params>;
type Base = Params::PlaintextRing;
fn get_delegate(&self) -> &Self::Base {
self.P.get_ring()
}
fn rev_delegate(&self, el: <Self::Base as RingBase>::Element) -> Self::Element {
let encoded = Params::encode_plain_multiplicant(&self.P, &self.C, &el);
let prepared = self.C.get_ring().prepare_multiplicant(&encoded);
EncodedBFVPlaintextRingEl {
prepared: prepared,
encoded: encoded,
el: el
}
}
fn delegate(&self, el: Self::Element) -> <Self::Base as RingBase>::Element { el.el }
fn delegate_ref<'a>(&self, el: &'a Self::Element) -> &'a <Self::Base as RingBase>::Element { &el.el }
fn delegate_mut<'a>(&self, el: &'a mut Self::Element) -> &'a mut <Self::Base as RingBase>::Element { &mut el.el }
}
impl<Params: BFVInstantiation> RingBase for EncodedBFVPlaintextRingBase<Params> {
fn clone_el(&self, val: &Self::Element) -> Self::Element {
EncodedBFVPlaintextRingEl {
el: self.P.clone_el(&val.el),
encoded: self.C.clone_el(&val.encoded),
prepared: self.C.get_ring().prepare_multiplicant(&val.encoded)
}
}
}
impl<Params: BFVInstantiation> AsBFVPlaintext<Params> for EncodedBFVPlaintextRingBase<Params> {
fn hom_add(
&self,
P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
m: &<Self as RingBase>::Element,
ct: Ciphertext<Params>
) -> Ciphertext<Params> {
assert!(self.P.get_ring() == P.get_ring());
Params::hom_add_plain(P, C, &m.el, ct)
}
#[instrument(skip_all)]
fn hom_mul(
&self,
_P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
m: &<Self as RingBase>::Element,
ct: Ciphertext<Params>
) -> Ciphertext<Params> {
assert!(self.C.get_ring() == C.get_ring());
(
C.get_ring().mul_prepared(&ct.0, None, &m.encoded, Some(&m.prepared)),
C.get_ring().mul_prepared(&ct.1, None, &m.encoded, Some(&m.prepared)),
)
}
#[instrument(skip_all)]
fn hom_fma(
&self,
_P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
dst: Ciphertext<Params>,
lhs: &Self::Element,
rhs: &Ciphertext<Params>
) -> Ciphertext<Params> {assert!(self.C.get_ring() == C.get_ring());
(
C.get_ring().fma_prepared(&rhs.0, None, &lhs.encoded, Some(&lhs.prepared), dst.0),
C.get_ring().fma_prepared(&rhs.1, None, &lhs.encoded, Some(&lhs.prepared), dst.1),
)
}
fn apply_galois_action_plain(
&self,
_P: &PlaintextRing<Params>,
x: &<Self as RingBase>::Element,
gs: &[GaloisGroupEl]
) -> Vec<<Self as RingBase>::Element> {
self.P.apply_galois_action_many(&x.el, gs).into_iter().map(|x| self.rev_delegate(x)).collect()
}
}
impl<R: RingBase> PlaintextCircuit<R> {
#[instrument(skip_all)]
pub fn evaluate_bfv<Params, S>(&self,
ring: S,
P: &PlaintextRing<Params>,
C: &CiphertextRing<Params>,
C_mul: Option<&CiphertextRing<Params>>,
inputs: &[Ciphertext<Params>],
rk: Option<&RelinKey<Params>>,
gks: &[(GaloisGroupEl, KeySwitchKey<Params>)],
key_switches: &mut usize,
_debug_sk: Option<&SecretKey<Params>>
) -> Vec<Ciphertext<Params>>
where Params: BFVInstantiation,
R: AsBFVPlaintext<Params>,
S: RingStore<Type = R> + Copy
{
assert!(!self.has_multiplication_gates() || C_mul.is_some());
assert_eq!(C_mul.is_some(), rk.is_some());
let galois_group = C.acting_galois_group();
let key_switches = RefCell::new(key_switches);
let result = self.evaluate_generic(
inputs,
DefaultCircuitEvaluator::<_, R, _, _, _, _, _, _>::new(
|x| match x {
Coefficient::Zero => Params::transparent_zero(C),
x => ring.get_ring().hom_add(P, C, &x.clone(ring).to_ring_el(ring), Params::transparent_zero(C))
},
|dst, x, ct| match x {
Coefficient::Zero => dst,
Coefficient::One => Params::hom_add(C, dst, ct),
Coefficient::NegOne => Params::hom_sub(C, dst, ct),
Coefficient::Integer(x) => Params::hom_fma_plain_int(P, C, dst, &int_cast(*x as i64, ZZbig, ZZi64), ct),
Coefficient::Other(x) => ring.get_ring().hom_fma(P, C, dst, x, ct)
}
).with_mul(|lhs, rhs| {
**key_switches.borrow_mut() += 1;
Params::hom_mul(P, C, C_mul.unwrap(), lhs, rhs, rk.unwrap())
}).with_square(|x| {
**key_switches.borrow_mut() += 1;
Params::hom_square(P, C, C_mul.unwrap(), x, rk.unwrap())
}).with_gal(|x, gs| if gs.len() == 1 {
**key_switches.borrow_mut() += 1;
vec![Params::hom_galois(C, x, &gs[0], &gks.iter().filter(|(g, _)| galois_group.eq_el(g, &gs[0])).next().unwrap().1)]
} else {
**key_switches.borrow_mut() += gs.iter().filter(|g| !galois_group.is_identity(*g)).count();
Params::hom_galois_many(C, x, gs, gs.as_fn().map_fn(|expected_g| if let Some(gk) = gks.iter().filter(|(g, _)| galois_group.eq_el(g, expected_g)).next() {
&gk.1
} else {
panic!("Galois key for {} not found", galois_group.underlying_ring().format(&galois_group.as_ring_el(expected_g)))
}))
})
);
return result;
}
}
#[cfg(test)]
use std::slice::from_ref;
#[cfg(test)]
use feanor_math::rings::poly::{dense_poly::DensePolyRing, PolyRingStore};
#[cfg(test)]
use crate::digit_extract::polys::poly_to_circuit;
#[cfg(test)]
use feanor_math::rings::zn::zn_64::*;
#[cfg(test)]
use feanor_math::assert_el_eq;
#[cfg(test)]
use crate::bfv::{Pow2BFV, test_setup_bfv};
#[test]
fn test_hom_evaluate_circuit() {
let (P, C, C_mul, sk, rk, _, ct) = test_setup_bfv(Pow2BFV::new(1 << 8));
let FpX = DensePolyRing::new(Zn::new(17), "X");
let [f] = FpX.with_wrapped_indeterminate(|X| [X.pow_ref(7) - 3 * X.pow_ref(3) + 2 * X + 10]);
let circuit = poly_to_circuit(&FpX, from_ref(&f));
let res = circuit.evaluate_bfv::<Pow2BFV, _>(ZZi64, &P, &C, Some(&C_mul), &[ct], Some(&rk), &[], &mut 0, None).into_iter().next().unwrap();
assert_el_eq!(&P, P.inclusion().map(FpX.evaluate(&f, &FpX.base_ring().int_hom().map(2), FpX.base_ring().identity())), &Pow2BFV::dec(&P, &C, res, &sk));
}