pub type EncryptionResult<T> = Result<T, String>;
Result type for encryption operations
pub enum EncryptionResult<T> { Ok(T), Err(String), }
Contains the success value
Contains the error value