Best of Cryptography — March 2024
- 1
- 2
- 3
Community 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
freeCodeCamp·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.