//! # **processing_code**
//! It's a simply crate I wrote for fun<br>
//! It's used to encode and decode with the password which users give<br>
//! 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);
/// ```