#otp #generate #length #passwords #dynamic #generator #one-time

otp_generator_custom_length

Rust库,用于生成动态一次性密码(OTP)

1个不稳定版本

0.1.0 2024年6月17日

#518认证

MIT 许可证

3KB

otp_generator_custom_length

otp_generator_custom_length 是一个Rust库,用于生成动态一次性密码(OTP)。它提供了一个简单的接口来生成可变长度的OTP代码。

安装

要在Rust项目中使用 otp_generator_custom_length,请在您的 Cargo.toml 中将其添加为依赖项

[dependencies]
otp_generator_custom_length = "0.1.0"

```rust
use otp_generator_custom_length::generate_otp;

fn main() {
    let otp_length = 6;
    let otp_code = generate_otp(otp_length);

    println!("Generated OTP code: {}", otp_code);
}

依赖项

~310KB