#password #xor #codec #processing #content

processing_code

Simply encode and decode

1 unstable release

0.1.0 Dec 31, 2023

#25 in #xor

MIT license

3KB

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);

lib.rs:

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

No runtime deps