Simple decoding and cracking library
For now, this library is in a semi-WIP state. You can test it following the example below.
First you would include the crate in your cargo.toml
file by using this:
toml
mercy = "0.1.4"
The current methods are supported: - Base64 - Rot13
Next, you can call the library like this: ```rust extern crate mercy;
mercy::mercy_return("DecodeMethod", "Hashed/Encoded Message");
// or
mercy::mercy_return("base64", "SGlmdW1pMTMzNw=="); ```
The library automatically prints to stdout. This will most likely be changed in a future update.