use std::{fs::File, io::Read}; use base64::prelude::*; use rand::{distributions::Alphanumeric, thread_rng, Rng}; use ring::digest::{self, digest}; use uuid::Uuid; // Кор функции pub fn rand() -> [u8; 50] { let mut rng = thread_rng(); let distr = rand::distributions::Uniform::new_inclusive(0, 255); let mut nums: [u8; 50] = [0u8; 50]; for x in &mut nums { *x = rng.sample(distr); } nums } //? What is this guy doing #[tracing::instrument] pub fn bytes_into_string(code: &[u8]) -> String { // This *might* be the correct way to do it. // code.iter().map(|byte| format!("{:02x}", byte)).collect::() // ????? Why do you need this? Why not just hex::encode? // So we need to turn each byte into a string with a 2-digit hexadecimal representation apparently... hex::encode(code) // This is the correct way to do it. // String::from_utf8_lossy(code).to_string() // Tried this, causes corrupted string } // Конец кор функций pub fn _generate_hex_string(length: usize) -> String { // FIXME: Variable doesn't using! let rng = thread_rng(); let random_bytes: Vec = rng.sample_iter(&Alphanumeric).take(length / 2).collect(); hex::encode(random_bytes) } pub fn get_correct_array(value: &toml::Value) -> Vec { // let res: Vec; value .as_array() .unwrap() .iter() .map(move |x| x.as_integer().unwrap() as u8) .collect() } pub fn format_uuid(uuid: &Uuid) -> String { // let uuid = Uuid::parse_str(&uuid)?; TODO: Вероятно format_uuid стоит убрать // .map_err(|_| tide::Error::from_str(StatusCode::InternalServerError, "Failed to parse UUID"))?; uuid.as_hyphenated().to_string() } pub fn calculate_file_sha256(file_path: &str) -> Result { // Read the file content let mut file = File::open(file_path)?; let mut content = Vec::new(); file.read_to_end(&mut content)?; // Convert the content to base64 let base64_content = BASE64_STANDARD.encode(&content); // Calculate the SHA-256 hash of the base64 string let binding = digest(&digest::SHA256, base64_content.as_bytes()); let hash = binding.as_ref(); // Convert the hash to a hexadecimal string let hex_hash = bytes_into_string(hash); Ok(hex_hash) }