This crate implements the No Chat Reports's custom chat encryption. More specifically this implements a fork of No Chat Reports.
All functionalities of the custom chat encryption are implemented. You can still use this crate normally if you are using the original No Chat Reports.
```rust use ncr::{ encoding::Base64rEncoding, encryption::{Cfb8Encryption, Encryption}, utils::prepend_header, AesKey, };
let key = AesKey::genfrompassphrase(b"secret");
let plaintext = prepend_header("I love Minecraft!");
let ciphertext = Cfb8Encryption::
println!("{}", ciphertext); ```
```rust use ncr::{ encoding::Base64rEncoding, encryption::{Cfb8Encryption, Encryption}, utils::trim_header, AesKey, };
let key = AesKey::genfrompassphrase(b"secret");
let ciphertext = r#"%[2_0»³"!7).«?;!.$¥`¶:8~667ª¸[¬)¢+¤^"#;
let plaintext = Cfb8Encryption::
let plaintext = trim_header(&plaintext).unwrap();
assert_eq!(plaintext, "I love Minecraft!"); ```