codebreaker-rs

Latest version Documentation

A Rust library to decrypt & encrypt any cheat code for CodeBreaker PS2.

Originally reverse-engineered from MIPS R5900 assembly and converted to C back in 2006. Now ported to Rust for fun and profit.

Quick Start

Add the crate as a dependency to your Cargo.toml:

toml [dependencies] codebreaker = "0.1"

Now you can start decrypting some codes:

```rust use codebreaker::Codebreaker;

let mut encrypted: Vec<(u32, u32)> = vec![ (0x2AFF014C, 0x2411FFFF), (0xB4336FA9, 0x4DFEFB79), (0x973E0B2A, 0xA7D4AF10), ]; let decrypted: Vec<(u32, u32)> = vec![ (0x2043AFCC, 0x2411FFFF), (0xBEEFC0DE, 0x00000000), (0x2096F5B8, 0x000000BE), ];

let mut cb = Codebreaker::new(); for code in encrypted.itermut() { cb.decryptcodemut(&mut code.0, &mut code.1); } asserteq!(decrypted, encrypted); ```

Read the full documentation for more examples.

License

Copyright (c) 2020 Mathias Lafeldt

Licensed under the Apache License, Version 2.0 or the MIT license, at your option.