#base64 #encryption #sodium #protocols #security #secure #caesar

振动协议

振动协议是一个安全、去中心化和注重隐私的消息协议。它采用 Sodium、Base64 和其他加密库设计,以确保最高级别的安全和隐私。

1 个不稳定版本

0.1.0 2024 年 4 月 18 日

#1492 in 加密学

MIT 许可证

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