1个不稳定版本
0.1.0 | 2024年7月4日 |
---|
#321 在 模拟
37 每月下载量
11KB
133 行
lorenz-sz
Lorenz SZ40密码机的模拟器。
示例
use lorenz_sz::{Machine, patterns::ZMUG_PATTERN};
let machine = Machine::new(&ZMUG_PATTERN);
for k in machine.keystream().take(50) {
// You'll need to handle the encryption yourself; this crate only
// implements the pseudo-random number generator.
println!("{}", k);
}
lib.rs
:
Lorenz SZ40密码机的模拟器。
示例
use lorenz_sz::{Machine, patterns::ZMUG_PATTERN};
let machine = Machine::new(&ZMUG_PATTERN);
for k in machine.keystream().take(50) {
// You'll need to handle the encryption yourself; this crate only
// implements the pseudo-random number generator.
println!("{}", k);
}