mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-24 04:21:08 +00:00
18 lines
285 B
Markdown
18 lines
285 B
Markdown
# Vigenère cipher
|
|
|
|
Python script that encrypts/decrypts a given text with a given key based on the [Vigenere cipher](https://en.wikipedia.org/wiki/Vigenère_cipher)
|
|
|
|
# Usage
|
|
|
|
For Windows users:
|
|
|
|
```bash
|
|
$ python vigenere.py
|
|
```
|
|
|
|
For Mac/Linux/Unix users:
|
|
|
|
```bash
|
|
$ ./vigenere.py
|
|
```
|