-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsole.py
45 lines (27 loc) · 972 Bytes
/
console.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#-------------------------------------------------------------------------------
# Name: sikessem-encryption
# Purpose:
#
# Author: SIGUI Kessé Emmanuel
#
# Created: 18/02/2021
# Copyright: (c) SIKessEm 2021
# Licence: MIT
#-------------------------------------------------------------------------------
from crypter import encrypt, decrypt
print('>>>BIENVENUE DANS NOTRE PROGRAMME DE CRYPTAGE<<<')
print('-------------------------------------------------')
word = input('Le mot à crypter : ')
step = input('Le nombre de pas : ')
step = int(step)
action = ''
while action not in ['-', '+', 'e', 'd']:
action = input('Encrypter (+|e) ou Décrypter (-|d) ? ')
else:
if action in ['-', 'd']:
code = decrypt(word, step)
else:
code = encrypt(word, step)
print('Le mot crypté est :', code)
print('-------------------------------------------------')
input("===Tapez sur n'importe quel touche pour sortir===")