added rlwe basic sk encryption

This commit is contained in:
Jean-Philippe Bossuat
2025-05-06 16:43:17 +02:00
parent e35924f44c
commit fe6f99b9ce
3 changed files with 102 additions and 16 deletions

View File

@@ -15,7 +15,7 @@ impl<T> SecretKey<T> {
&self.data
}
pub fn data_mut(&self) -> &mut T {
pub fn data_mut(&mut self) -> &mut T {
&mut self.data
}
}