Expand description
UniAZ - A Unicode encryption library
This crate provides functionality to unify arbitrary Unicode characters into a-z.
§Examples
use uniaz::UniAz;
let uni_az = UniAz::new();
let encrypted = uni_az.encrypt('你');
let decrypted = uni_az.decrypt(&encrypted).unwrap();
assert_eq!(decrypted, '你');Structs§
- UniAz
- Main interface for Unicode character encryption and decryption
Enums§
- Decrypt
Error - Error type for decryption failures.