awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 个仓库

Awesome GitHub RepositoriesEncrypted Client Hello

Protocol extensions that encrypt the initial client handshake message to prevent passive network observation.

Distinct from Client-Side Encryption: Candidates focus on encrypted email, sync clients, or DNS queries, not the specific TLS Client Hello encryption.

Explore 2 awesome GitHub repositories matching security & cryptography · Encrypted Client Hello. Refine with filters or upvote what's useful.

Awesome Encrypted Client Hello GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • rustls/rustlsrustls 的头像

    rustls/rustls

    7,470在 GitHub 上查看↗

    rustls is a memory-safe implementation of the Transport Layer Security protocol written in Rust. It provides a cryptographic stack for secure network communication, supporting both TLS 1.3 and 1.2 standards for client and server implementations. The project is designed as a modular cryptographic library that allows swapping underlying cryptographic backends and primitive providers to meet specific security or performance requirements. It incorporates a post-quantum cryptography stack, utilizing hybrid key exchanges and signatures to protect data against future quantum computing threats. The

    Protects data sent during the initial handshake to prevent passive network observers from seeing client information.

    Rustcryptographyrustssl
    在 GitHub 上查看↗7,470
  • awslabs/s2nawslabs 的头像

    awslabs/s2n

    4,736在 GitHub 上查看↗

    s2n 是一个基于 C 的安全库和 TLS 协议实现,作为安全网络传输层。它提供了一个模块化加密后端接口,用于加密数据流、管理握手并处理对等点之间的双向身份验证。 该项目专注于后量子密码学,集成了抗量子密钥交换和数字签名,以保护连接免受未来计算威胁。它通过安全加固措施(如内存锁定秘密存储以防止密钥被交换到磁盘)和通过随机延迟进行的定时攻击缓解来区分自身。 该库涵盖了广泛的连接管理和优化功能,包括会话恢复、预共享密钥以及通过自定义回调进行的非阻塞网络 I/O。它还提供广泛的证书管理工具,用于信任存储处理、吊销验证和透明度验证。

    Parses handshake data to extract cipher suites, session IDs, extensions, and supported groups from the Client Hello.

    C
    在 GitHub 上查看↗4,736
  1. Home
  2. Security & Cryptography
  3. Encrypted Client Hello

探索子标签

  • Handshake Message ParsingExtraction and decoding of TLS handshake messages to retrieve protocol parameters. **Distinct from Encrypted Client Hello:** Focuses on parsing the structure of the Client Hello, whereas Encrypted Client Hello focuses on the encryption of that message.