pub trait LweCiphertextVectorEntity: AbstractEntity<Kind = LweCiphertextVectorKind> {
    fn lwe_dimension(&self) -> LweDimension;
    fn lwe_ciphertext_count(&self) -> LweCiphertextCount;
}
Expand description

A trait implemented by types embodying an LWE ciphertext vector.

Formal Definition

cf here

Required Methods§

Returns the LWE dimension of the ciphertexts.

Returns the number of ciphertexts contained in the vector.

Implementors§