Number of files encrypted with the current master key.
(&self)
| 299 | |
| 300 | /// Number of files encrypted with the current master key. |
| 301 | pub fn files_encrypted(&self) -> u64 { |
| 302 | self.files_encrypted |
| 303 | .load(std::sync::atomic::Ordering::Relaxed) |
| 304 | } |
| 305 | } |
| 306 | |
| 307 | #[cfg(test)] |