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.
- Host: GitHub
- URL: https://github.com/albinzayedrawan/asymmetric-encryption
- Owner: albinzayedrawan
- Created: 2024-11-17T19:08:41.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-11-17T19:13:18.000Z (11 months ago)
- Last Synced: 2025-04-04T15:50:53.622Z (6 months ago)
- Topics: asymmetric-encryption, cryptography, diffie-hellman-key-exchange, rsa-encryption
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.