You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implémentation de la méthode déchiffrer et intégration dans le détecteur crypto (#31)
* Implementation de la fonction de validation du texte déchiffrer
* Définition de la classe de gestion des rapports de ission et implémentatioon de la fonction de génération des rapport de synthèse
* Implémentation de la fonction de recherche d'anciens rapports
* merge réussi
* Validation des tests et corrections du rapport mission
* chekpoint: Blowfish _Analyzer.identifier_algo()
* add: Intiialisation de Blowfish_Analyzer et implémentation de Blowfish_Analyzer.identifier_algo()
* Implémentation de Blowfish_Analyzer.filtrer_dictionnaire_par_indice()
* Correction de bug
* Implementer de Blowfish déchiffrer
* Integration de blowfish dans le detecteur crypto
---------
Co-authored-by: Let Me Cook <badaroumouwafic@gmail.com>
Copy file name to clipboardExpand all lines: src/interface_console.py
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
fromrich.textimportText
6
6
fromrich.promptimportPrompt
7
7
fromrich.tableimportTable
8
+
frompathlibimportPath
8
9
# from detecteur_crypto import Analyser_fichier_uniquement
9
10
# from detecteur_crypto import Analyser_fichier_sequentiels
10
11
from .detecteur_cryptoimportDetecteurCryptoOrchestrateur
@@ -55,7 +56,7 @@ def default_menu(self):
55
56
self.console.print(menuTag,menuOption)
56
57
time.sleep(0.04)
57
58
58
-
choix=self.prompt.ask("Veuillez choisir une option ",choices=["1","2","3","4","5","6"])
59
+
choix=self.prompt.ask("Veuillez choisir une option ",choices=["1","2","3","4","5","6"])
59
60
try:
60
61
ifchoix=="1":
61
62
self.menu_1()
@@ -145,7 +146,8 @@ def menu_5(self):
145
146
mission_table.add_row("AES-256-GCM","mission4.enc","Acronyme d'une organisation internationale + année courante","Identifier le mode authentifié GCM et gérer l'authentification")
146
147
mission_table.add_row("Fernet","mission5.enc","Phrase française simple encodée, liée à notre domaine d'étude","Reconnaître le format Fernet et sa structure particulière")
0 commit comments