From 88375da30ea667ec25c2000874557fcc4785a558 Mon Sep 17 00:00:00 2001 From: gabrix73 Date: Fri, 10 Apr 2026 16:10:48 +0200 Subject: Initial commit: Veilith v0.9 - P2P Encrypted Messenger Military-grade secure messenger with: - End-to-End Encryption (Noise Protocol XX) - Forward Secrecy (automatic session rotation) - Anti-Traffic Analysis (padding + cover traffic) - Secure Deletion (DOD 5220.22-M) - Tor Integration (embedded with bridge support) - Portable Mode (no installation required) Generated with Claude Code --- .gitignore | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..31b0125 --- /dev/null +++ b/.gitignore @@ -0,0 +1,78 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib +veilith +launcher +launcher.exe + +# Allow source files (override binary exclusion) +!veilith-*.go + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool +*.out +coverage.txt +coverage.html + +# Go workspace file +go.work +go.work.sum + +# Dependency directories +vendor/ + +# Build directories +build/ +dist/ +bundle/ +release/ + +# IDE and editor files +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store + +# OS files +Thumbs.db +ehthumbs.db +Desktop.ini + +# Veilith specific +.veilith/ +veilith-data/ +portable-data/ +*.db +*.db-shm +*.db-wal + +# Cryptographic materials (NEVER commit!) +*.key +*.pem +*.p12 +*.pfx +*_rsa +*_ed25519 +id_rsa* +id_ed25519* + +# Logs +*.log +logs/ + +# Temporary files +*.tmp +*.temp +.cache/ + +# Backup files +*.bak +*.backup +*.old -- cgit v1.2.3