- Makefile: setup automatico libreria alla prima compilazione - Bruteforce: ottimizzazioni multi-threading con CPU affinity
72 lines
1021 B
Plaintext
72 lines
1021 B
Plaintext
# ===================================
|
|
# Python Scanner & Database
|
|
# ===================================
|
|
|
|
# Virtual Environment
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
*$py.class
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
*.html
|
|
|
|
# ===================================
|
|
# C++ Bruteforce
|
|
# ===================================
|
|
|
|
# Eseguibili compilati
|
|
bruteforce/p2pk_bruteforce
|
|
bruteforce/p2pk_bruteforce_debug
|
|
|
|
# File oggetto e compilazione
|
|
*.o
|
|
*.a
|
|
*.so
|
|
*.gcda
|
|
*.gcno
|
|
*.gch
|
|
|
|
# File generati dal bruteforce
|
|
bruteforce/found_keys.txt
|
|
bruteforce/progress.csv
|
|
bruteforce/target_keys.txt
|
|
|
|
# libsecp256k1 compilata localmente
|
|
bruteforce/secp256k1_build/
|
|
bruteforce/secp256k1/
|
|
|
|
# ===================================
|
|
# IDE & Editor
|
|
# ===================================
|
|
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# ===================================
|
|
# OS
|
|
# ===================================
|
|
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ===================================
|
|
# Logs & Temp
|
|
# ===================================
|
|
|
|
*.log
|
|
*.tmp |