mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-23 20:11:07 +00:00
Adding vigenere cipher script
This commit is contained in:
parent
8b9f74e2f2
commit
53ba4f64a5
17
vigenere_cipher/README.md
Normal file
17
vigenere_cipher/README.md
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# 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
|
||||||
|
```
|
75
vigenere_cipher/vigenere.py
Normal file
75
vigenere_cipher/vigenere.py
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
alph = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||||
|
|
||||||
|
#actuall stuff
|
||||||
|
def decryption(key, text):
|
||||||
|
key_len = len(key)
|
||||||
|
count = 0
|
||||||
|
#adjusting the key
|
||||||
|
real_key = ''
|
||||||
|
#fixing spaces
|
||||||
|
for i in text:
|
||||||
|
if i != ' ':
|
||||||
|
if count == len(key):
|
||||||
|
count = 0
|
||||||
|
real_key += key[count]
|
||||||
|
count += 1
|
||||||
|
else:
|
||||||
|
real_key += ' '
|
||||||
|
print(real_key)
|
||||||
|
encr = ''
|
||||||
|
#decrypting
|
||||||
|
for c in range(0,len(text)):
|
||||||
|
if text[c] == ' ':
|
||||||
|
encr += ' '
|
||||||
|
else:
|
||||||
|
encr += (alph[(ord(text[c]) - ord(real_key[c])) % 26])
|
||||||
|
return encr
|
||||||
|
|
||||||
|
def encryption(key, text):
|
||||||
|
key_len = len(key)
|
||||||
|
count = 0
|
||||||
|
#adjusting the key
|
||||||
|
real_key = ''
|
||||||
|
#fixing spaces
|
||||||
|
for i in text:
|
||||||
|
if i != ' ':
|
||||||
|
if count == len(key):
|
||||||
|
count = 0
|
||||||
|
real_key += key[count]
|
||||||
|
count += 1
|
||||||
|
|
||||||
|
else:
|
||||||
|
real_key += ' '
|
||||||
|
print(real_key)
|
||||||
|
encr = ''
|
||||||
|
#encrypting
|
||||||
|
for c in range(0,len(text)):
|
||||||
|
if text[c] == ' ':
|
||||||
|
encr += ' '
|
||||||
|
else:
|
||||||
|
encr += (alph[(ord(real_key[c]) + ord(text[c])) % 26])
|
||||||
|
return encr
|
||||||
|
|
||||||
|
#user input
|
||||||
|
def main():
|
||||||
|
boolean = True
|
||||||
|
while(boolean):
|
||||||
|
try:
|
||||||
|
mode = input('Do you want to encrypt or to decrypt [e/d]? ')
|
||||||
|
if mode.upper().startswith('E'):
|
||||||
|
text = input('Please enter the text: ').upper()
|
||||||
|
key = input('Please enter the key: ').upper()
|
||||||
|
print(encryption(key, text))
|
||||||
|
boolean = False
|
||||||
|
elif mode.upper().startswith('D'):
|
||||||
|
text = input('Please enter the text: ').upper()
|
||||||
|
key = input('Please enter the key: ').upper()
|
||||||
|
print(decryption(key, text))
|
||||||
|
boolean = False
|
||||||
|
else:
|
||||||
|
print('Please enter a valid choice')
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
exit()
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
Loading…
Reference in New Issue
Block a user