Aggiunge programma C++ di bruteforce P2PK con secp256k1

This commit is contained in:
2026-01-23 08:48:08 +01:00
parent 9dd990ec9c
commit 4faea99426
5 changed files with 1128 additions and 2 deletions

41
.gitignore vendored
View File

@@ -1,3 +1,7 @@
# ===================================
# Python Scanner & Database
# ===================================
# Virtual Environment
.venv/
venv/
@@ -11,19 +15,52 @@ __pycache__/
*.pyo
*.pyd
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
# IDE
# ===================================
# 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
# ===================================
# IDE & Editor
# ===================================
.vscode/
.idea/
*.swp
*.swo
*~
# ===================================
# OS
# ===================================
.DS_Store
Thumbs.db
# ===================================
# Logs & Temp
# ===================================
*.log
*.tmp