Skip to main content

Crate uniaz

Crate uniaz 

Source
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§

DecryptError
Error type for decryption failures.