pub trait SyncEncryptor: Send + Sync {
// Required methods
fn encrypt(&self, plaintext: &[u8]) -> Result<Vec<u8>>;
fn decrypt(&self, ciphertext: &[u8]) -> Result<Vec<u8>>;
}Required Methods§
fn encrypt(&self, plaintext: &[u8]) -> Result<Vec<u8>>
fn decrypt(&self, ciphertext: &[u8]) -> Result<Vec<u8>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".