Skip to content

Commit b5f9fe1

Browse files
committed
Merge branch 'main' of https://github.com/mouwaficbdr/CryptoForensic-Python into add/Initialisation_Blowfish_Analyzer
2 parents 5ab3e40 + b5a0198 commit b5f9fe1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/detecteur_crypto.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
from crypto_analyzer import CryptoAnalyzer
99
from analyzers.chacha20_analyzer import ChaCha20_Analyzer
1010
from analyzers.blowfish_analyzer import Blowfish_Analyzer
11+
from analyzers.aes_gcm_analyzer import Aes_Gcm_Analyzer
1112

1213
# Import des modules utilitaries
1314
from utils import est_dechiffre
@@ -39,7 +40,8 @@ def __init__(self):
3940
self.analyzers: dict[str, CryptoAnalyzer] = {
4041
"AES-CBC": Aes_Cbc_Analyzer(),
4142
"ChaCha20": ChaCha20_Analyzer(),
42-
"Blowfish": Blowfish_Analyzer()
43+
"Blowfish": Blowfish_Analyzer(),
44+
"AES-GCM": Aes_Gcm_Analyzer()
4345
}
4446
self.missions_completees: list[dict[str, Union[str, list[ResultatAnalyse], float]]] = []
4547
self.statistiques_globales: dict[str, Union[int, float]] = {

0 commit comments

Comments
 (0)