1个不稳定版本

0.1.0 2023年1月14日

#2148 in 密码学

MIT/Apache

11KB
149

playfair-rs

GitHub Workflow Status Crates.io docs.rs Codecov

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

无运行时依赖