#cipher #code #hutton

hutton-rust

以 Rust crate 形式实现的 Hutton 密码

2 个版本

0.1.1 2020 年 10 月 7 日
0.1.0 2020 年 10 月 7 日

#1469 in 算法

Unlicense 许可证

5KB
63

Hutton 密码

Eric Bond Hutton 的 Hutton 密码,用 Rust 实现(作为一个 crate)。

使用示例

extern crate hutton_rust;

use hutton_rust::encrypt;

fn main() {
  // the following 3 values must all consist of lowercase letters in the range [a-z]
  // else, panicc!
  let input = String::from("helloworld");
  let password = String::from("foo");
  let key = String::from("bar");
  // the last boolean argument is whether to decrypt instead of encrypt
  let output = encrypt(&input, &password, &key, false);
  println!("{}", output); // => pwckfenttc
}

无运行时依赖