Skip to content

This project demonstrates the basics of RSA encryption and decryption using C#. RSA is a public-key cryptosystem that is widely used for secure data transmission. The application allows you to generate RSA keys, encrypt a message with the public key, and decrypt it with the private key. This example is a starting point for understanding how RSA enc

Notifications You must be signed in to change notification settings

stealthscripter/rsa_cryptography

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

RSA Encryption Console Application

This repository contains a simple C# console application that demonstrates RSA encryption and decryption using the RSACryptoServiceProvider class.

Overview

The application includes a class RsaEnc which handles the encryption and decryption of text using RSA (Rivest-Shamir-Adleman) public-key cryptography. The program allows you to:

  • Generate a public/private key pair.
  • Serialize and display the public key as an XML string.
  • Encrypt a given plaintext string using the public key.
  • Decrypt the encrypted string (cypher text) using the private key.

Class Details

RsaEnc Class

  • Constructor: Initializes the RSA keys, exporting both the private and public keys.
  • PublicKeyString: Serializes and returns the public key as an XML string.
  • Encrypt(string plainText): Encrypts the provided plaintext using the public key and returns the encrypted text in Base64 format.
  • Decrypt(string cypherText): Decrypts the provided cypher text using the private key and returns the original plaintext.

Program Class

  • The Main method:
    • Instantiates the RsaEnc class.
    • Displays the public key.
    • Prompts the user to input a text string to encrypt.
    • Encrypts the user input and displays the encrypted (cypher) text.
    • Decrypts the cypher text and displays the original plaintext.

Usage

To run the application:

  1. Clone the repository.
  2. Build and run the project.
  3. Follow the prompts to enter the text you wish to encrypt.
  4. View the encrypted text.
  5. Decrypt the text to verify the output.

About

This project demonstrates the basics of RSA encryption and decryption using C#. RSA is a public-key cryptosystem that is widely used for secure data transmission. The application allows you to generate RSA keys, encrypt a message with the public key, and decrypt it with the private key. This example is a starting point for understanding how RSA enc

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages