processing_code 0.1.0

Simply encode and decode
Documentation
  • Coverage
  • 100%
    2 out of 2 items documented1 out of 1 items with examples
  • Size
  • Source code size: 1.99 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 112.33 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • KatoM923

processing_code

It's a simply crate I wrote for fun
It's used to encode and decode with the password which users give And it's just use XOR

get a password and content then processing the content with the password

Example

let password = "Password";
let content = "Content";

let encode = processing_code(password, content);
println!("{}", encode);

let decode = processing_code(password, &encode);
assert_eq!(content, decode);