Skip to content
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
80c1f1b
Intégration de AesCbcAnalyzer dans DetecteurCryptoOrchestrateur.
Eunock-web Aug 2, 2025
83cc501
Merge branch 'feature/consoleInterface' of https://github.com/mouwafi…
Eunock-web Aug 2, 2025
a41256c
Debut de l'implementation du code dans la classe principale avec le menu
Eunock-web Aug 2, 2025
cac3bf5
Suite de l'implementation du code dans la classe principale avec le menu
Eunock-web Aug 2, 2025
93fd27d
Update de l'option quitter
wesley-kami Aug 4, 2025
77102c5
Merge branch 'main' of https://github.com/mouwaficbdr/CryptoForensic-…
wesley-kami Aug 4, 2025
c1c0b22
Revu des fonctions pour une meilleure optimisation
Eunock-web Aug 5, 2025
abb4365
Merge branch 'feature/DetecteurCryptoOrchestrateur' of https://github…
wesley-kami Aug 5, 2025
b74715c
Ajout du guide d'utilisation
wesley-kami Aug 5, 2025
5c9e9bb
Merge branch 'main' of https://github.com/mouwaficbdr/CryptoForensic-…
wesley-kami Aug 5, 2025
3a51f8e
Merge branch 'main' of https://github.com/mouwaficbdr/CryptoForensic-…
wesley-kami Aug 6, 2025
a45afa0
mission1 + console prémices
wesley-kami Aug 6, 2025
5e5d7c0
Merge branch 'main' of https://github.com/mouwaficbdr/CryptoForensic-…
wesley-kami Aug 7, 2025
ced12b2
test
wesley-kami Aug 7, 2025
8a11839
Merge branch 'main' into feature/DetecteurCryptoOrchestrateur
wesley-kami Aug 7, 2025
d18e690
finalisation de l'intégration mission1 + console plus de stress
wesley-kami Aug 7, 2025
49082ed
Merge branch 'feature/DetecteurCryptoOrchestrateur' of https://github…
wesley-kami Aug 7, 2025
87ec604
Merge branch 'main' into feature/DetecteurCryptoOrchestrateur
wesley-kami Aug 8, 2025
07ecc0b
Merge branch 'main' of https://github.com/mouwaficbdr/CryptoForensic-…
e-mandy Aug 8, 2025
880d922
Intégration de l'AesGcmAnalyzer dans l'orchestrateur
e-mandy Aug 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/detecteur_crypto.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from crypto_analyzer import CryptoAnalyzer
from analyzers.chacha20_analyzer import ChaCha20_Analyzer
from analyzers.blowfish_analyzer import Blowfish_Analyzer
from analyzers.aes_gcm_analyzer import Aes_Gcm_Analyzer

# Import des modules utilitaries
from utils import est_dechiffre
Expand Down Expand Up @@ -39,7 +40,8 @@ def __init__(self):
self.analyzers: dict[str, CryptoAnalyzer] = {
"AES-CBC": Aes_Cbc_Analyzer(),
"ChaCha20": ChaCha20_Analyzer(),
"Blowfish": Blowfish_Analyzer()
"Blowfish": Blowfish_Analyzer(),
"AES-GCM": Aes_Gcm_Analyzer()
}
self.missions_completees: list[dict[str, Union[str, list[ResultatAnalyse], float]]] = []
self.statistiques_globales: dict[str, Union[int, float]] = {
Expand Down