diff --git a/src/main.rs b/src/main.rs index 7a8cedf..e0e23c0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -141,7 +141,7 @@ pub fn read_cipher(path: String) -> (Vec, Vec) { pub fn decrypt(ciphertext: Vec, secret_key: orion::kdf::SecretKey) -> String { let plaintext = match aead::open(&secret_key, &ciphertext) { Ok(temp) => { - println!("{} Data was decrypted", "Success".bright_green()); + println!("{} Data was decrypted", "Success:".bright_green()); temp } Err(_) => {