pub trait LweCiphertextVectorLoadingEngine<CiphertextVector, SubCiphertextVector>: AbstractEnginewhere
    CiphertextVector: LweCiphertextVectorEntity,
    SubCiphertextVector: LweCiphertextVectorEntity,
{ fn load_lwe_ciphertext_vector(
        &mut self,
        vector: &CiphertextVector,
        range: LweCiphertextRange
    ) -> Result<SubCiphertextVector, LweCiphertextVectorLoadingError<Self::EngineError>>; unsafe fn load_lwe_ciphertext_vector_unchecked(
        &mut self,
        vector: &CiphertextVector,
        range: LweCiphertextRange
    ) -> SubCiphertextVector; }
Expand description

A trait for engines loading a sub LWE ciphertext vector from another one.

Semantics

This pure operation generates an LWE ciphertext vector containing a piece of the vector LWE ciphertext vector.

Formal Definition

Required Methods

Loads a subpart of an LWE ciphertext vector.

Unsafely loads a subpart of an LWE ciphertext vector.

Safety

For the general safety concerns regarding this operation, refer to the different variants of LweCiphertextVectorLoadingError. For safety concerns specific to an engine, refer to the implementer safety section.

Implementors