#[non_exhaustive]pub enum GlweCiphertextVectorDiscardingDecryptionError<EngineError: Error> {
GlweDimensionMismatch,
PolynomialSizeMismatch,
PlaintextCountMismatch,
Engine(EngineError),
}Expand description
An error used with the GlweCiphertextVectorDiscardingDecryptionEngine trait.
This type provides a
GlweCiphertextVectorDiscardingDecryptionError::perform_generic_checks
function that does error checking for the general cases, returning an Ok(())
if the inputs are valid, meaning that engine implementors would then only
need to check for their own specific errors.
Otherwise an Err(..) with the proper error variant is returned.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
GlweDimensionMismatch
Generic error: The GLWE dimensions of the key and the input ciphertext vector must be the same.
PolynomialSizeMismatch
Generic error: The polynomial size of the key and the input ciphertext vector must be the same.
PlaintextCountMismatch
Generic error: The input plaintext vector length and input ciphertext vector capacity (poly size * length) must be the same.
Engine(EngineError)
Specific error to the implementing engine.
Implementations§
Source§impl<EngineError: Error> GlweCiphertextVectorDiscardingDecryptionError<EngineError>
impl<EngineError: Error> GlweCiphertextVectorDiscardingDecryptionError<EngineError>
Sourcepub fn perform_generic_checks<SecretKey, CiphertextVector, PlaintextVector>(
key: &SecretKey,
output: &PlaintextVector,
input: &CiphertextVector,
) -> Result<(), Self>where
SecretKey: GlweSecretKeyEntity,
CiphertextVector: GlweCiphertextVectorEntity<KeyDistribution = SecretKey::KeyDistribution>,
PlaintextVector: PlaintextVectorEntity,
pub fn perform_generic_checks<SecretKey, CiphertextVector, PlaintextVector>(
key: &SecretKey,
output: &PlaintextVector,
input: &CiphertextVector,
) -> Result<(), Self>where
SecretKey: GlweSecretKeyEntity,
CiphertextVector: GlweCiphertextVectorEntity<KeyDistribution = SecretKey::KeyDistribution>,
PlaintextVector: PlaintextVectorEntity,
Validates the inputs
Trait Implementations§
Source§impl<EngineError: Clone + Error> Clone for GlweCiphertextVectorDiscardingDecryptionError<EngineError>
impl<EngineError: Clone + Error> Clone for GlweCiphertextVectorDiscardingDecryptionError<EngineError>
Source§fn clone(&self) -> GlweCiphertextVectorDiscardingDecryptionError<EngineError>
fn clone(&self) -> GlweCiphertextVectorDiscardingDecryptionError<EngineError>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<EngineError: Debug + Error> Debug for GlweCiphertextVectorDiscardingDecryptionError<EngineError>
impl<EngineError: Debug + Error> Debug for GlweCiphertextVectorDiscardingDecryptionError<EngineError>
Source§impl<EngineError: Error> Display for GlweCiphertextVectorDiscardingDecryptionError<EngineError>
impl<EngineError: Error> Display for GlweCiphertextVectorDiscardingDecryptionError<EngineError>
Source§impl<EngineError: Error> Error for GlweCiphertextVectorDiscardingDecryptionError<EngineError>
impl<EngineError: Error> Error for GlweCiphertextVectorDiscardingDecryptionError<EngineError>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl<EngineError: PartialEq + Error> PartialEq for GlweCiphertextVectorDiscardingDecryptionError<EngineError>
impl<EngineError: PartialEq + Error> PartialEq for GlweCiphertextVectorDiscardingDecryptionError<EngineError>
Source§fn eq(
&self,
other: &GlweCiphertextVectorDiscardingDecryptionError<EngineError>,
) -> bool
fn eq( &self, other: &GlweCiphertextVectorDiscardingDecryptionError<EngineError>, ) -> bool
self and other values to be equal, and is used by ==.