Cryptographic-API-Services / cas-dotnet-sdk

A Nuget package that provides a implementation of the RustCrypto suite of cryptographic algorithms.
Apache License 2.0
0 stars 0 forks source link

Find Other Hybrid Encryption Library in C# for benchmark on README #55

Open WingZer0o opened 5 months ago

WingZer0o commented 3 weeks ago

ChatGPT gave me the following examples none of which are extremely used.

Here are some C# libraries on GitHub that implement AES/RSA hybrid encryption:

Cryptography by chriscdev: This library includes an implementation called FastRsa, which uses AES for data encryption and RSA for encrypting the AES key and IV. It provides detailed steps for encryption and decryption, as well as performance tips for optimizing the process​ (GitHub)​.

cryptocsharp by nagilum: This library offers both symmetric (AES) and asymmetric (RSA) encryption functionalities. It provides examples for generating RSA keys, encrypting and decrypting data using RSA, and encrypting and decrypting text using AES​ (GitHub)​.

Hybrid-File-Encryption by HarryCS98: This project is a file encryption program that uses AES for encrypting files and RSA for encrypting the AES key. It includes a GUI for ease of use and addresses security concerns related to remote work environments​ (GitHub)​.