1个不稳定版本
0.1.0 | 2023年1月14日 |
---|
#2148 in 密码学
11KB
149 行
playfair-rs
Playfair加密在Rust中实现。
用法
fn main() {
let encrypted = playfair_rs::encrypt("playfair example", "hide the gold in the tree stump", 'x').unwrap();
println!("{encrypted}"); // bmodzbxdnabekudmuixmmouvif
let decrypted = playfair_rs::decrypt("playfair example", &encrypted).unwrap();
println!("{decrypted}"); // hidethegoldinthetrexestump
}
许可证
所有代码都根据MIT许可证和Apache 2.0许可证双许可。
版权
版权所有 © 2023, Orhun Parmaksız