1 个不稳定版本
0.1.0 | 2024 年 4 月 18 日 |
---|
#1492 in 加密学
7KB
67 行
振动协议
振动协议是一个针对 Rust 的快速、安全的加密库,提供端到端加密,注重性能和安全。它结合了凯撒密码的简单性和 libsodium 加密机制和 base64 编码的健壮性。
功能
- 使用经典和现代技术的混合进行端到端加密。
- 凯撒密码进行初始转换。
- 使用 Sodium 库进行强大加密。
- Base64 编码进行输出格式化。
- 设计时考虑高性能和安全。
快速入门
将 VibeProtocol 添加到您的 Cargo.toml
[dependencies]
VibeProtocol = "0.1.0"
在项目中使用 VibeProtocol
use VibeProtocol::{encrypt, decrypt};
fn main() {
let message = "Secret Message";
let caesar_shift = 13;
let (encrypted_message, nonce, key) = encrypt(message, caesar_shift).unwrap();
let decrypted_message = decrypt(&encrypted_message, &nonce, &key, caesar_shift).unwrap();
assert_eq!(message, decrypted_message);
}
贡献
我们欢迎贡献!请随时提交拉取请求。
许可证
本项目采用 MIT 许可证 - 有关详细信息,请参阅 LICENSE 文件。
依赖关系
~18MB
~86K SLoC