ares_lib 0.10.0

Automated decoding tool, Ciphey but in Rust
Documentation
use crate::checkers::CheckerTypes;
use crate::decoders::interface::check_string_success;

use super::crack_results::CrackResult;
///! Decodes a base58 bitcoin string
///! Performs error handling and returns a string
///! Call base58_bitcoin_decoder.crack to use. It returns option<String> and check with
///! `result.is_some()` to see if it returned okay.
///
use super::interface::Crack;
use super::interface::Decoder;

use log::{debug, info, trace};

/// The Base58_bitcoin decoder, call:
/// `let base58_bitcoin_decoder = Decoder::<Base58BitcoinDecoder>::new()` to create a new instance
/// And then call:
/// `result = base58_bitcoin_decoder.crack(input)` to decode a base58_bitcoin string
/// The struct generated by new() comes from interface.rs
/// ```
/// use ares::decoders::base58_bitcoin_decoder::{Base58BitcoinDecoder};
/// use ares::decoders::interface::{Crack, Decoder};
/// use ares::checkers::{athena::Athena, CheckerTypes, checker_type::{Check, Checker}};
///
/// let decode_base58_bitcoin = Decoder::<Base58BitcoinDecoder>::new();
/// let athena_checker = Checker::<Athena>::new();
/// let checker = CheckerTypes::CheckAthena(athena_checker);
///
/// let result = decode_base58_bitcoin.crack("StV1DL6CwTryKyV", &checker).unencrypted_text;
/// assert!(result.is_some());
/// assert_eq!(result.unwrap()[0], "hello world");
/// ```
pub struct Base58BitcoinDecoder;

impl Crack for Decoder<Base58BitcoinDecoder> {
    fn new() -> Decoder<Base58BitcoinDecoder> {
        Decoder {
            name: "Base58 Bitcoin",
            description: "Base58 is a group of binary-to-text encoding schemes that represent binary data (more specifically, a sequence of 8-bit bytes) in an ASCII string format by translating the data into a radix-32 representation.",
            link: "https://en.wikipedia.org/wiki/Base58",
            tags: vec!["base58_bitcoin", "base58", "bitcoin", "cryptocurrency", "decoder", "base"],
            popularity: 0.8,
            phantom: std::marker::PhantomData,
        }
    }

    /// This function does the actual decoding
    /// It returns an Option<string> if it was successful
    /// Else the Option returns nothing and the error is logged in Trace
    fn crack(&self, text: &str, checker: &CheckerTypes) -> CrackResult {
        trace!("Trying Base58_bitcoin with text {:?}", text);
        let decoded_text = decode_base58_bitcoin_no_error_handling(text);
        let mut results = CrackResult::new(self, text.to_string());

        if decoded_text.is_none() {
            debug!("Failed to decode base58_bitcoin because Base58BitcoinDecoder::decode_base58_bitcoin_no_error_handling returned None");
            return results;
        }

        let decoded_text = decoded_text.unwrap();
        if !check_string_success(&decoded_text, text) {
            info!(
                "Failed to decode base58_bitcoin because check_string_success returned false on string {}",
                decoded_text
            );
            return results;
        }

        let checker_result = checker.check(&decoded_text);
        results.unencrypted_text = Some(vec![decoded_text]);

        results.update_checker(&checker_result);

        results
    }
    /// Gets all tags for this decoder
    fn get_tags(&self) -> &Vec<&str> {
        &self.tags
    }
    /// Gets the name for the current decoder
    fn get_name(&self) -> &str {
        self.name
    }
}

/// helper function
fn decode_base58_bitcoin_no_error_handling(text: &str) -> Option<String> {
    // Runs the code to decode base58_bitcoin
    // Doesn't perform error handling, call from_base58_bitcoin
    if let Ok(decoded_text) = bs58::decode(text)
        .with_alphabet(bs58::Alphabet::BITCOIN)
        .into_vec()
    {
        return Some(String::from_utf8_lossy(&decoded_text).to_string());
    }
    None
}

#[cfg(test)]
mod tests {
    use super::Base58BitcoinDecoder;
    use crate::{
        checkers::{
            athena::Athena,
            checker_type::{Check, Checker},
            CheckerTypes,
        },
        decoders::interface::{Crack, Decoder},
    };

    // helper for tests
    fn get_athena_checker() -> CheckerTypes {
        let athena_checker = Checker::<Athena>::new();
        CheckerTypes::CheckAthena(athena_checker)
    }

    #[test]
    fn successful_decoding() {
        let base58_bitcoin_decoder = Decoder::<Base58BitcoinDecoder>::new();

        let result = base58_bitcoin_decoder.crack("StV1DL6CwTryKyV", &get_athena_checker());
        let decoded_str = &result
            .unencrypted_text
            .expect("No unencrypted text for base58_bitcoin");
        assert_eq!(decoded_str[0], "hello world");
    }

    #[test]
    fn base58_bitcoin_decode_empty_string() {
        // Bsae58_bitcoin returns an empty string, this is a valid base58_bitcoin string
        // but returns False on check_string_success
        let base58_bitcoin_decoder = Decoder::<Base58BitcoinDecoder>::new();
        let result = base58_bitcoin_decoder
            .crack("", &get_athena_checker())
            .unencrypted_text;
        assert!(result.is_none());
    }

    #[test]
    fn base58_bitcoin_decode_handles_panics() {
        let base58_bitcoin_decoder = Decoder::<Base58BitcoinDecoder>::new();
        let result = base58_bitcoin_decoder
            .crack(
                "hello my name is panicky mc panic face!",
                &get_athena_checker(),
            )
            .unencrypted_text;
        if result.is_some() {
            panic!("Decode_base58_bitcoin did not return an option with Some<t>.")
        } else {
            // If we get here, the test passed
            // Because the base58_bitcoin_decoder.crack function returned None
            // as it should do for the input
            assert_eq!(true, true);
        }
    }

    #[test]
    fn base58_bitcoin_handle_panic_if_empty_string() {
        let base58_bitcoin_decoder = Decoder::<Base58BitcoinDecoder>::new();
        let result = base58_bitcoin_decoder
            .crack("", &get_athena_checker())
            .unencrypted_text;
        if result.is_some() {
            assert_eq!(true, true);
        }
    }

    #[test]
    fn base58_bitcoin_work_if_string_not_base58_bitcoin() {
        // You can base58_bitcoin decode a string that is not base58_bitcoin
        // This string decodes to:
        // ```.ée¢
        // (uÖ²```
        // https://gchq.github.io/CyberChef/#recipe=From_Base58('A-Za-z0-9%2B/%3D',true)&input=aGVsbG8gZ29vZCBkYXkh
        let base58_bitcoin_decoder = Decoder::<Base58BitcoinDecoder>::new();
        let result = base58_bitcoin_decoder
            .crack("hello good day!", &get_athena_checker())
            .unencrypted_text;
        if result.is_some() {
            assert_eq!(true, true);
        }
    }

    #[test]
    fn base58_bitcoin_handle_panic_if_emoji() {
        let base58_bitcoin_decoder = Decoder::<Base58BitcoinDecoder>::new();
        let result = base58_bitcoin_decoder
            .crack("😂", &get_athena_checker())
            .unencrypted_text;
        if result.is_some() {
            assert_eq!(true, true);
        }
    }
}