| Crates.io | sqep |
| lib.rs | sqep |
| version | 0.1.0 |
| created_at | 2025-07-22 03:59:23.383401+00 |
| updated_at | 2025-07-22 03:59:23.383401+00 |
| description | SQEP โ Secure Quantum Encryption Protocol powered by ContiCrypt |
| homepage | |
| repository | https://github.com/kaizenraijin/sqep |
| max_upload_size | |
| id | 1762958 |
| size | 38,385 |
SQEP is a next-generation cryptography crate developed by Kaizen Raijin for use in AI-powered systems, hospitals, secure communications, and high-trust environments.
It combines AES-256-GCM encryption with quantum-inspired entropy scrambling and (optionally) zlib compression โ forming a robust defense mechanism powered by the proprietary ContiCrypt Engine.
encrypt_lite() โ MIT Licensed, fully auditable, ideal for general security needs.encrypt_plus() โ Premium encryption with advanced entropy & compression (requires plus feature).Add to your Cargo.toml:
sqep = { version = "0.1" }
๐ SQEP Plus (Premium):
sqep = { version = "0.1", features = ["plus"] }
๐งช Example Usage
use sqep::ZeroshieldCipher;
fn main() {
let cipher = ZeroshieldCipher::new();
let data = b"Top secret AI payload";
let (encrypted, meta) = cipher.encrypt_with_meta(data);
println!("Encrypted: {:?}", encrypted);
println!("Meta: {:?}", meta);
let decrypted = cipher.decrypt(&encrypted).expect("Decryption failed");
println!("Decrypted: {:?}", String::from_utf8_lossy(&decrypted));
}
๐ Licensing
Version License Notes
Lite MIT Free for personal and commercial use
Plus Proprietary Requires a valid license key
To request a commercial Plus license:
๐ง kaizenraijin@proton.me
๐ Project Links
๐ฆ Crates.io
๐ ๏ธ Source Code
๐ Author
Kaizen Raijin
Visionary cryptographer & AI systems engineer
๐ https://github.com/kaizenraijin
---