ckks_engine::ckks

Struct CKKSEncryptor

Source
pub struct CKKSEncryptor {
    pub pub_key: PublicKey,
    pub params: CkksParameters,
}

Fields§

§pub_key: PublicKey§params: CkksParameters

Implementations§

Source§

impl CKKSEncryptor

Source

pub fn new(pub_key: PublicKey, params: CkksParameters) -> Self

Source

pub fn encrypt_collection<T>(&self, plaintext: &[T]) -> Polynomial
where T: Into<f64> + Copy,

Source

pub fn encrypt_value<T>(&self, plaintext: T) -> Polynomial
where T: Into<f64> + Copy,

Source

pub fn encrypt_string(&self, plaintext: &str) -> Polynomial

Source§

impl CKKSEncryptor

Source

pub fn homomorphic_add( &self, cipher1: &Polynomial, cipher2: &Polynomial, ) -> Polynomial

Source

pub fn homomorphic_subtract( &self, cipher1: &Polynomial, cipher2: &Polynomial, ) -> Polynomial

Source

pub fn homomorphic_multiply( &self, cipher1: &Polynomial, cipher2: &Polynomial, ) -> Polynomial

Source

pub fn homomorphic_negation(&self, cipher1: &Polynomial) -> Polynomial

Source

pub fn homomorphic_ceil(&self, cipher: &Polynomial) -> Polynomial

Source

pub fn homomorphic_floor(&self, cipher: &Polynomial) -> Polynomial

Source

pub fn homomorphic_round(&self, cipher: &Polynomial) -> Polynomial

Source

pub fn homomorphic_truncate(&self, cipher: &Polynomial) -> Polynomial

Source

pub fn homomorphic_reciprocal( &self, cipher: &Polynomial, iterations: u32, ) -> Polynomial

Source

pub fn homomorphic_divide( &self, cipher1: &Polynomial, cipher2: &Polynomial, ) -> Polynomial

Source

pub fn homomorphic_exponentiation( &self, cipher: &Polynomial, exponent: u32, ) -> Polynomial

Source§

impl CKKSEncryptor

Source

pub fn homomorphic_length(&self, encrypted_poly: &Polynomial) -> usize

Function to calculate the homomorphic length of an encrypted string. This is the number of non-zero coefficients in the encrypted polynomial.

Source

pub fn concatenate_encrypted_strings( &self, encrypted_poly1: &Polynomial, encrypted_poly2: &Polynomial, ) -> Polynomial

Function to concatenate two encrypted strings by combining their encrypted polynomials. This will create a new polynomial containing the coefficients of both encrypted strings.

Source

pub fn extract_encrypted_substring<R>( &self, encrypted_poly: &Polynomial, range: R, ) -> Polynomial
where R: RangeBounds<usize>,

Extracts a substring from an encrypted string, using Rust range syntax.

  • encrypted_poly: The encrypted string as a polynomial.
  • range: A range representing the indices to extract (e.g., 0..3, 3.., ..5).

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V