https://github.com/adamo08/encryption-decryption
This repository contains implementations of various encryption and decryption algorithms in Python. The goal is to provide simple and easy-to-understand code for educational and practical purposes.
https://github.com/adamo08/encryption-decryption
affine-cipher algorithms caesar-cipher cryptography decryption des-cipher encryption hill-cipher python security vigenere-cipher
Last synced: 2 days ago
JSON representation
This repository contains implementations of various encryption and decryption algorithms in Python. The goal is to provide simple and easy-to-understand code for educational and practical purposes.
- Host: GitHub
- URL: https://github.com/adamo08/encryption-decryption
- Owner: Adamo08
- Created: 2024-10-02T14:37:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-26T13:21:00.000Z (over 1 year ago)
- Last Synced: 2025-04-08T08:49:19.502Z (10 months ago)
- Topics: affine-cipher, algorithms, caesar-cipher, cryptography, decryption, des-cipher, encryption, hill-cipher, python, security, vigenere-cipher
- Language: Python
- Homepage:
- Size: 98.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cryptography Algorithms
This repository contains implementations of various encryption and decryption algorithms in Python. The goal is to provide simple and easy-to-understand code for educational and practical purposes.
## Algorithms Included
- **Caesar Cipher**
- **Affine Cipher**
- **Vigenère Cipher**
- **Hill Cipher**
- **DES (Data Encryption Standard)**
## Getting Started
### Prerequisites
To run the algorithms, you'll need Python 3.x installed on your system.
### Installation
1. Clone the repository:
```bash
git clone https://github.com/adamo08/encryption-decryption.git
```
2. Navigate to the project folder:
```bash
cd encryption-decryption
```
3. Install the required Python dependencies (if any):
```bash
pip install -r requirements.txt
```
## Contributing
Contributions are welcome! If you have suggestions or improvements for the algorithms, feel free to fork the repository and submit a pull request. Please ensure your code follows the existing style and includes relevant documentation.