Remove unshell_crypt, and change some of the naming to make it more accurate

This commit is contained in:
Michael Mikovsky
2026-02-08 12:56:52 -07:00
parent d089c2a8aa
commit ebeaa29d5b
16 changed files with 197 additions and 466 deletions
+16 -4
View File
@@ -1,5 +1,17 @@
mod junk_asm;
mod strings;
mod obs_junk_asm;
mod obs_xor;
mod sym_aes_strings;
pub use junk_asm::junk_asm;
pub use strings::*;
pub use obs_junk_asm::junk_asm;
pub use sym_aes_strings::*;
use crate::crypt::{BACKUP_ENV_KEY, ENV_KEY_NAME};
fn get_encryption_key() -> String {
std::env::var(ENV_KEY_NAME).unwrap_or({
println!("Using default encryption key!");
BACKUP_ENV_KEY.to_owned()
})
}
// pub fn