From a4b0a72c37aeba4478109a4d6ed1b58f220f7d05 Mon Sep 17 00:00:00 2001 From: Ruslan Semagin Date: Wed, 10 Jul 2024 11:11:03 +0300 Subject: [PATCH] add links to 'ring' in Rust Cryptography (#6120) --- .../roadmaps/rust/content/113-cryptography/100-ring.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/rust/content/113-cryptography/100-ring.md b/src/data/roadmaps/rust/content/113-cryptography/100-ring.md index 1dd89cd89..5b381c6eb 100644 --- a/src/data/roadmaps/rust/content/113-cryptography/100-ring.md +++ b/src/data/roadmaps/rust/content/113-cryptography/100-ring.md @@ -1,3 +1,8 @@ # ring -`Ring` is a popular cryptography library in Rust providing a safe, fast and easy-to-use platform for handling a broad range of cryptographic operations. The library supports a variety of cryptographic primitives, including RSA, AES, SHA, and many others. `Ring` is focused on the implementation of TLS protocol and cryptographic algorithm fundamentals, hence it doesn't include functionalities like parsing or serialization. This library excels in eliminating many common pitfalls of crypto usage by asserting on compile-time and runtime checks. One key feature is its limitation to safe, reviewed cryptographic algorithms, which enables it to help prevent accidental usage of insecure ones. \ No newline at end of file +`Ring` is a popular cryptography library in Rust providing a safe, fast and easy-to-use platform for handling a broad range of cryptographic operations. The library supports a variety of cryptographic primitives, including RSA, AES, SHA, and many others. `Ring` is focused on the implementation of TLS protocol and cryptographic algorithm fundamentals, hence it doesn't include functionalities like parsing or serialization. This library excels in eliminating many common pitfalls of crypto usage by asserting on compile-time and runtime checks. One key feature is its limitation to safe, reviewed cryptographic algorithms, which enables it to help prevent accidental usage of insecure ones. + +Visit the following resources to learn more: + +- [@opensource@ring](https://github.com/briansmith/ring) +- [@article@Docs.rs: ring](https://docs.rs/ring/latest/ring/)