aft_crypto/
errors.rs

1#[derive(Debug)]
2pub enum EncryptionErrors {
3    FailedEncrypt,
4    FailedDecrypt,
5    IncorrectPassword,
6    InvalidLength,
7}