An open API service indexing awesome lists of open source software.

https://github.com/albinzayedrawan/asymmetric-encryption

Lab Exercises about asymmetric encryption with RSA & Diffie-Hellman.
https://github.com/albinzayedrawan/asymmetric-encryption

asymmetric-encryption cryptography diffie-hellman-key-exchange rsa-encryption

Last synced: 3 months ago
JSON representation

Lab Exercises about asymmetric encryption with RSA & Diffie-Hellman.

Awesome Lists containing this project

README

          

# Asymmetric Encryption

## RSA Encryption and Decryption:
- Write a Python program that performs RSA encryption and decryption using your generated key pair.
- Encrypt the following message: "CRYPTOGRAPHY" (convert each character to its ASCII value).
- Decrypt the ciphertext back to the original message.

## Diffie-Hellman Key Exchange:
- Write a Python program that performs the Diffie-Hellman key exchange using the provided values and private keys for Alice and Bob.
- The program should output both public keys and the shared secret key for both parties.