Best of CryptographyMarch 2024

  1. 1
    Article
    Avatar of communityCommunity Picks·2y

    oz123/awesome-c: A curated list of awesome C frameworks, libraries, resources and other shiny things. Inspired by all the other awesome-... projects out there.

    A curated list of awesome C frameworks, libraries, resources, and tools.

  2. 2
    Article
    Avatar of communityCommunity Picks·2y

    Implementing RSA in Python from Scratch

    Learn how to implement RSA encryption in Python from scratch. Explore the math behind RSA, generate keys, and encrypt and decrypt messages.

  3. 3
    Article
    Avatar of communityCommunity Picks·2y

    rustls/rustls: A modern TLS library in Rust

    Rustls is a modern TLS library written in Rust that provides a good level of cryptographic security and implements TLS1.2 and TLS1.3. It allows replacing cryptography dependencies and offers built-in providers. Rustls also provides examples for handling I/O and working with different runtimes.

  4. 4
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    How to Protect Data in Transit using HMAC and Diffie-Hellman in Node.js [Full Handbook]

    This post discusses the importance of data integrity in communication and how to protect data in transit using HMAC and Diffie-Hellman in Node.js. It explains the concepts of Message Detection Code (MDC), Message Authentication Code (MAC), and Hash-based MACs (HMAC) in detail. The post also provides a brief overview of the Diffie-Hellman-Merkle Protocol and demonstrates how to implement these cryptographic constructs in a Node.js application.