1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
use thiserror::Error;
pub type Result<T> = std::result::Result<T, Error>;
#[derive(Debug, Error, PartialEq, Eq)]
pub enum Error {
#[error("{0}")]
MathError(fhe_math::Error),
#[error("Serialization error")]
SerializationError,
#[error("Too many values provided: {0} exceeds limit {1}")]
TooManyValues(usize, usize),
#[error("Too few values provided: {0} is below limit {1}")]
TooFewValues(usize, usize),
#[error("{0}")]
UnspecifiedInput(String),
#[error("Encoding mismatch: found {0}, expected {1}")]
EncodingMismatch(String, String),
#[error("Does not support {0} encoding")]
EncodingNotSupported(String),
#[error("{0}")]
ParametersError(ParametersError),
#[error("{0}")]
DefaultError(String),
}
impl From<fhe_math::Error> for Error {
fn from(e: fhe_math::Error) -> Self {
Error::MathError(e)
}
}
#[derive(Debug, Error, PartialEq, Eq)]
pub enum ParametersError {
#[error("Invalid degree: {0} is not a power of 2 larger than 8")]
InvalidDegree(usize),
#[error("Invalid modulus size: {0}, expected an integer between {1} and {2}")]
InvalidModulusSize(usize, usize, usize),
#[error("Not enough primes of size {0} for polynomials of degree {1}")]
NotEnoughPrimes(usize, usize),
#[error("{0}")]
InvalidPlaintext(String),
#[error("{0}")]
TooManySpecified(String),
#[error("{0}")]
TooFewSpecified(String),
}
#[cfg(test)]
mod tests {
use crate::{Error, ParametersError};
#[test]
fn error_strings() {
assert_eq!(
Error::MathError(fhe_math::Error::InvalidContext).to_string(),
fhe_math::Error::InvalidContext.to_string()
);
assert_eq!(Error::SerializationError.to_string(), "Serialization error");
assert_eq!(
Error::TooManyValues(20, 17).to_string(),
"Too many values provided: 20 exceeds limit 17"
);
assert_eq!(
Error::TooFewValues(10, 17).to_string(),
"Too few values provided: 10 is below limit 17"
);
assert_eq!(
Error::UnspecifiedInput("test string".to_string()).to_string(),
"test string"
);
assert_eq!(
Error::EncodingMismatch("enc1".to_string(), "enc2".to_string()).to_string(),
"Encoding mismatch: found enc1, expected enc2"
);
assert_eq!(
Error::EncodingNotSupported("test".to_string()).to_string(),
"Does not support test encoding"
);
assert_eq!(
Error::ParametersError(ParametersError::InvalidDegree(10)).to_string(),
ParametersError::InvalidDegree(10).to_string()
);
}
#[test]
fn parameters_error_strings() {
assert_eq!(
ParametersError::InvalidDegree(10).to_string(),
"Invalid degree: 10 is not a power of 2 larger than 8"
);
assert_eq!(
ParametersError::InvalidModulusSize(1, 2, 3).to_string(),
"Invalid modulus size: 1, expected an integer between 2 and 3"
);
assert_eq!(
ParametersError::NotEnoughPrimes(1, 2).to_string(),
"Not enough primes of size 1 for polynomials of degree 2"
);
assert_eq!(
ParametersError::InvalidPlaintext("test".to_string()).to_string(),
"test"
);
assert_eq!(
ParametersError::TooManySpecified("test".to_string()).to_string(),
"test"
);
assert_eq!(
ParametersError::TooFewSpecified("test".to_string()).to_string(),
"test"
);
}
}