summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgabrix73 <gabriel1@frozenstar.info>2026-04-12 14:49:49 +0200
committergabrix73 <gabriel1@frozenstar.info>2026-04-12 14:49:49 +0200
commitbb189dd1e7cc14900e03a72403752e6aa5276d8c (patch)
treebdf857d7101e8889c33077c55819227eaff675bb
parenta7a7d3fd4559015fbe02b2016c3f39379262d1c2 (diff)
downloadkhimera-bb189dd1e7cc14900e03a72403752e6aa5276d8c.tar.gz
khimera-bb189dd1e7cc14900e03a72403752e6aa5276d8c.tar.xz
khimera-bb189dd1e7cc14900e03a72403752e6aa5276d8c.zip
rename: Veilith -> Khimera across all files and documentation
-rw-r--r--.gitignore10
-rw-r--r--LICENSE2
-rw-r--r--MILITARY-FEATURES.md20
-rw-r--r--Makefile22
-rw-r--r--README.md38
-rw-r--r--SECURITY.md12
-rwxr-xr-xbuild-bundle.sh72
-rw-r--r--go.mod2
-rw-r--r--khimera-main.go (renamed from veilith-main.go)22
-rw-r--r--launcher.bat28
-rw-r--r--transport/mesh/mesh.go2
-rw-r--r--transport/mesh/storeforward.go2
-rw-r--r--transport/tor/embedded.go4
-rw-r--r--transport/tor/tor.go2
14 files changed, 119 insertions, 119 deletions
diff --git a/.gitignore b/.gitignore
index 31b0125..af9d418 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,12 +4,12 @@
*.dll
*.so
*.dylib
-veilith
+khimera
launcher
launcher.exe
# Allow source files (override binary exclusion)
-!veilith-*.go
+!khimera-*.go
# Test binary, built with `go test -c`
*.test
@@ -45,9 +45,9 @@ Thumbs.db
ehthumbs.db
Desktop.ini
-# Veilith specific
-.veilith/
-veilith-data/
+# Khimera specific
+.khimera/
+khimera-data/
portable-data/
*.db
*.db-shm
diff --git a/LICENSE b/LICENSE
index 733133d..5f3e55e 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2026 Veilith Contributors
+Copyright (c) 2026 Khimera Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/MILITARY-FEATURES.md b/MILITARY-FEATURES.md
index 4f82fb7..f778c63 100644
--- a/MILITARY-FEATURES.md
+++ b/MILITARY-FEATURES.md
@@ -1,4 +1,4 @@
-# 🎖️ Veilith - Military Features Implementation
+# 🎖️ Khimera - Military Features Implementation
## ✅ **IMPLEMENTED - Critical War Zone Features**
@@ -346,7 +346,7 @@ embeddedTor.SetBridges(tor.GetDefaultBridges())
**Situation:**
- Soldier captured by enemy
-- USB drive with Veilith seized
+- USB drive with Khimera seized
- Enemy attempting to extract contacts/intel
**Solution:**
@@ -399,11 +399,11 @@ queue.Enqueue(criticalMessage)
package main
import (
- "veilith/identity"
- "veilith/security"
- "veilith/transport"
- "veilith/transport/tor"
- "veilith/transport/mesh"
+ "khimera/identity"
+ "khimera/security"
+ "khimera/transport"
+ "khimera/transport/tor"
+ "khimera/transport/mesh"
)
func main() {
@@ -468,7 +468,7 @@ func main() {
// TODO: Add keyboard listener for Ctrl+Alt+Del+F12
// On trigger: wipe.Wipe()
- fmt.Println("✅ Veilith Military Edition Ready")
+ fmt.Println("✅ Khimera Military Edition Ready")
fmt.Println("🎖️ All war-zone features active")
}
```
@@ -528,7 +528,7 @@ func main() {
## 🎖️ **Conclusion**
-**Veilith v1.0-military is NOW READY for war zones.**
+**Khimera v1.0-military is NOW READY for war zones.**
All critical military features implemented:
✅ Embedded Tor
@@ -549,5 +549,5 @@ All critical military features implemented:
---
-**Veilith - Military Edition**
+**Khimera - Military Edition**
*Privacy you can carry. Security you can trust. Even in war zones.*
diff --git a/Makefile b/Makefile
index 0fde165..d7efa6a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
-# Veilith Portable - Makefile
+# Khimera Portable - Makefile
# Builds portable executables for Windows, Linux, and Android
# Configuration
VERSION := 0.9
BUILD_DATE := $(shell date +%Y%m%d)
-OUTPUT_DIR := veilith-portable-v$(VERSION)
+OUTPUT_DIR := khimera-portable-v$(VERSION)
LDFLAGS := -s -w -X main.Version=$(VERSION) -X main.BuildDate=$(BUILD_DATE)
# Colors for output
@@ -21,7 +21,7 @@ all: portable
# Help
help:
- @echo "Veilith Portable Build System v$(VERSION)"
+ @echo "Khimera Portable Build System v$(VERSION)"
@echo ""
@echo "Usage:"
@echo " make portable - Build all portable executables"
@@ -54,8 +54,8 @@ windows: install-deps
go build \
-ldflags="$(LDFLAGS) -H windowsgui" \
-tags static \
- -o $(OUTPUT_DIR)/Windows/veilith.exe \
- ./veilith-main.go
+ -o $(OUTPUT_DIR)/Windows/khimera.exe \
+ ./khimera-main.go
@if [ $$? -eq 0 ]; then \
echo "$(GREEN)✓$(NC) Windows build complete"; \
else \
@@ -72,9 +72,9 @@ linux: install-deps
go build \
-ldflags="$(LDFLAGS) -extldflags '-static'" \
-tags 'osusergo netgo static_build' \
- -o $(OUTPUT_DIR)/Linux/veilith-linux \
- ./veilith-main.go
- @chmod +x $(OUTPUT_DIR)/Linux/veilith-linux
+ -o $(OUTPUT_DIR)/Linux/khimera-linux \
+ ./khimera-main.go
+ @chmod +x $(OUTPUT_DIR)/Linux/khimera-linux
@if [ $$? -eq 0 ]; then \
echo "$(GREEN)✓$(NC) Linux build complete"; \
else \
@@ -89,7 +89,7 @@ android:
# Build all portable executables
portable:
@echo "$(BLUE)╔════════════════════════════════════════╗$(NC)"
- @echo "$(BLUE)║ VEILITH PORTABLE BUILD v$(VERSION) ║$(NC)"
+ @echo "$(BLUE)║ KHIMERA PORTABLE BUILD v$(VERSION) ║$(NC)"
@echo "$(BLUE)╚════════════════════════════════════════╝$(NC)"
@echo ""
@$(MAKE) -s linux
@@ -110,8 +110,8 @@ test:
clean:
@echo "$(YELLOW)[Clean]$(NC) Removing build artifacts..."
rm -rf $(OUTPUT_DIR)
- rm -rf veilith-portable-v*.zip
- rm -rf veilith-portable-v*.tar.gz
+ rm -rf khimera-portable-v*.zip
+ rm -rf khimera-portable-v*.tar.gz
@echo "$(GREEN)✓$(NC) Clean complete"
# Package distribution
diff --git a/README.md b/README.md
index b6c8a36..496eba4 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
-# 🔒 Veilith - Military-Grade Portable Messenger
+# 🔒 Khimera - Military-Grade Portable Messenger
**Secure, anonymous, portable messaging designed for hostile environments.**
-Veilith is a war-ready communication tool that works even when Internet is unavailable or censored. Built for soldiers, journalists, activists, and anyone who needs unbreakable privacy.
+Khimera is a war-ready communication tool that works even when Internet is unavailable or censored. Built for soldiers, journalists, activists, and anyone who needs unbreakable privacy.
## 🎯 Core Philosophy
@@ -28,14 +28,14 @@ Veilith is a war-ready communication tool that works even when Internet is unava
- Linux/Mac: `./launcher`
- Windows: `launcher.bat`
-Veilith auto-detects your OS and runs the correct executable. All data stays on the USB drive.
+Khimera auto-detects your OS and runs the correct executable. All data stays on the USB drive.
### Build from Source
```bash
# Clone repository
-git clone https://github.com/gabrix73/veilith.git
-cd veilith
+git clone https://github.com/gabrix73/khimera.git
+cd khimera
# Build for your platform
make linux # Linux executable
@@ -52,7 +52,7 @@ make all # All platforms
## 🛡️ Military Features
### 1️⃣ **Embedded Tor Bundle**
-No external Tor daemon required. Veilith bundles Tor directly in the executable.
+No external Tor daemon required. Khimera bundles Tor directly in the executable.
```go
// Auto-starts Tor on launch
@@ -336,8 +336,8 @@ queue.Enqueue(criticalMessage)
## 📁 Project Structure
```
-veilith/
-├── veilith-main.go # Main entry point
+khimera/
+├── khimera-main.go # Main entry point
├── identity/
│ └── identity.go # Ed25519 identity management
├── addressbook/
@@ -369,11 +369,11 @@ veilith/
### Change Identity
-Delete your identity key - Veilith auto-generates a new one on next launch:
+Delete your identity key - Khimera auto-generates a new one on next launch:
```bash
-rm ~/.veilith/identity.key
-./veilith
+rm ~/.khimera/identity.key
+./khimera
# New identity auto-generated
```
@@ -383,10 +383,10 @@ Use different data directories:
```bash
# Identity 1 (journalist)
-VEILITH_DATA_DIR=~/.veilith-journalist ./veilith
+KHIMERA_DATA_DIR=~/.khimera-journalist ./khimera
# Identity 2 (activist)
-VEILITH_DATA_DIR=~/.veilith-activist ./veilith
+KHIMERA_DATA_DIR=~/.khimera-activist ./khimera
```
### Panic Button (Emergency Wipe)
@@ -396,7 +396,7 @@ VEILITH_DATA_DIR=~/.veilith-activist ./veilith
For now, programmatically:
```go
-import "veilith/security"
+import "khimera/security"
wipe := security.NewEmergencyWipe(&security.WipeConfig{
DataDir: "./data",
@@ -467,7 +467,7 @@ Contributions welcome! Please follow these guidelines:
**MIT License**
-Copyright (c) 2024 Veilith Project
+Copyright (c) 2024 Khimera Project
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
@@ -479,7 +479,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
## ⚠️ Security Notice
-**Veilith is designed for defensive security only.**
+**Khimera is designed for defensive security only.**
- ✅ Use for privacy, anonymity, secure communications
- ✅ Use in hostile/censored environments
@@ -493,8 +493,8 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
## 📞 Support
-- **Issues:** [GitHub Issues](https://github.com/yourusername/veilith/issues)
-- **Discussions:** [GitHub Discussions](https://github.com/yourusername/veilith/discussions)
+- **Issues:** [GitHub Issues](https://github.com/yourusername/khimera/issues)
+- **Discussions:** [GitHub Discussions](https://github.com/yourusername/khimera/discussions)
- **Security:** Report vulnerabilities privately via email
---
@@ -511,6 +511,6 @@ Special thanks to cryptographers and security researchers who make privacy tools
---
-**Veilith - Privacy you can carry. Security you can trust. Even in war zones.**
+**Khimera - Privacy you can carry. Security you can trust. Even in war zones.**
🔒 **Stay safe. Stay anonymous. Stay connected.**
diff --git a/SECURITY.md b/SECURITY.md
index fedabad..dca2848 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -2,7 +2,7 @@
## Supported Versions
-Currently, Veilith is in active development (version 0.9). Security updates are applied to the latest version only.
+Currently, Khimera is in active development (version 0.9). Security updates are applied to the latest version only.
| Version | Supported |
| ------- | ------------------ |
@@ -13,7 +13,7 @@ Currently, Veilith is in active development (version 0.9). Security updates are
**DO NOT** open public GitHub issues for security vulnerabilities.
-If you discover a security vulnerability in Veilith, please report it responsibly:
+If you discover a security vulnerability in Khimera, please report it responsibly:
### Preferred Method: Encrypted Email
@@ -37,7 +37,7 @@ If you discover a security vulnerability in Veilith, please report it responsibl
## Security Features
-Veilith implements multiple layers of defense:
+Khimera implements multiple layers of defense:
- **End-to-End Encryption**: Noise Protocol (XX pattern)
- **Forward Secrecy**: Automatic session key rotation
@@ -67,7 +67,7 @@ The following are considered **out of scope** for security reports:
Users should:
-1. Keep Veilith updated to the latest version
+1. Keep Khimera updated to the latest version
2. Verify binary signatures before installation
3. Use portable mode on untrusted systems
4. Enable emergency wipe if at risk
@@ -76,7 +76,7 @@ Users should:
## Cryptographic Implementation
-Veilith uses well-audited cryptographic libraries:
+Khimera uses well-audited cryptographic libraries:
- **Noise Protocol**: `flynn/noise` (Go implementation)
- **Tor**: Embedded Tor with authenticated bridges
@@ -86,7 +86,7 @@ We **never** implement custom cryptography.
## Bug Bounty
-Currently, Veilith does not offer a paid bug bounty program. However, we deeply appreciate responsible disclosure and will publicly credit researchers (with permission).
+Currently, Khimera does not offer a paid bug bounty program. However, we deeply appreciate responsible disclosure and will publicly credit researchers (with permission).
---
diff --git a/build-bundle.sh b/build-bundle.sh
index d848fd4..3ffcb3b 100755
--- a/build-bundle.sh
+++ b/build-bundle.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-# Veilith Portable - USB Bundle Builder
+# Khimera Portable - USB Bundle Builder
# Creates a complete multi-platform USB bundle
set -e
@@ -14,13 +14,13 @@ NC='\033[0m'
# Configuration
VERSION="0.9"
-BUNDLE_NAME="veilith-usb-v${VERSION}"
+BUNDLE_NAME="khimera-usb-v${VERSION}"
BUILD_DATE=$(date +%Y%m%d)
echo -e "${CYAN}"
echo "╔══════════════════════════════════════════════════════╗"
echo "║ ║"
-echo "║ VEILITH USB BUNDLE BUILDER v${VERSION} ║"
+echo "║ KHIMERA USB BUNDLE BUILDER v${VERSION} ║"
echo "║ Multi-Platform Portable Distribution ║"
echo "║ ║"
echo "╚══════════════════════════════════════════════════════╝"
@@ -54,19 +54,19 @@ echo ""
# Build Linux
echo -e "${BLUE}[1/2]${NC} Building Linux executable..."
echo " Target: Linux AMD64"
-echo " Output: $BUNDLE_NAME/Linux/veilith-linux"
+echo " Output: $BUNDLE_NAME/Linux/khimera-linux"
CGO_ENABLED=1 \
GOOS=linux \
GOARCH=amd64 \
go build \
-ldflags="-s -w -X main.Version=${VERSION} -X main.BuildDate=${BUILD_DATE}" \
- -o "$BUNDLE_NAME/Linux/veilith-linux" \
- ./veilith-main.go
+ -o "$BUNDLE_NAME/Linux/khimera-linux" \
+ ./khimera-main.go
if [ $? -eq 0 ]; then
- chmod +x "$BUNDLE_NAME/Linux/veilith-linux"
- SIZE=$(du -h "$BUNDLE_NAME/Linux/veilith-linux" | cut -f1)
+ chmod +x "$BUNDLE_NAME/Linux/khimera-linux"
+ SIZE=$(du -h "$BUNDLE_NAME/Linux/khimera-linux" | cut -f1)
echo -e "${GREEN}✓${NC} Linux build complete (${SIZE})"
else
echo -e "${RED}✗${NC} Linux build failed"
@@ -79,7 +79,7 @@ echo -e "${BLUE}[2/2]${NC} Building Windows executable..."
if command -v x86_64-w64-mingw32-gcc &> /dev/null; then
echo " Target: Windows AMD64"
- echo " Output: $BUNDLE_NAME/Windows/veilith.exe"
+ echo " Output: $BUNDLE_NAME/Windows/khimera.exe"
CGO_ENABLED=1 \
GOOS=windows \
@@ -87,11 +87,11 @@ if command -v x86_64-w64-mingw32-gcc &> /dev/null; then
CC=x86_64-w64-mingw32-gcc \
go build \
-ldflags="-s -w -H windowsgui -X main.Version=${VERSION} -X main.BuildDate=${BUILD_DATE}" \
- -o "$BUNDLE_NAME/Windows/veilith.exe" \
- ./veilith-main.go
+ -o "$BUNDLE_NAME/Windows/khimera.exe" \
+ ./khimera-main.go
if [ $? -eq 0 ]; then
- SIZE=$(du -h "$BUNDLE_NAME/Windows/veilith.exe" | cut -f1)
+ SIZE=$(du -h "$BUNDLE_NAME/Windows/khimera.exe" | cut -f1)
echo -e "${GREEN}✓${NC} Windows build complete (${SIZE})"
else
echo -e "${RED}✗${NC} Windows build failed"
@@ -123,10 +123,10 @@ To build Android APK:
3. Build APK:
cd ..
- fyne package -os android -appID com.veilith.portable
+ fyne package -os android -appID com.khimera.portable
4. Sign APK (optional):
- jarsigner -keystore veilith.keystore app.apk veilith
+ jarsigner -keystore khimera.keystore app.apk khimera
For more info: https://developer.fyne.io/started/mobile
EOF
@@ -138,7 +138,7 @@ echo -e "${YELLOW}[Documentation]${NC} Creating README..."
cat > "$BUNDLE_NAME/README.txt" << EOF
╔══════════════════════════════════════════════════════════════╗
║ ║
-║ VEILITH PORTABLE USB v${VERSION} ║
+║ KHIMERA PORTABLE USB v${VERSION} ║
║ Privacy-First P2P Messenger ║
║ Multi-Platform Edition ║
║ ║
@@ -147,10 +147,10 @@ cat > "$BUNDLE_NAME/README.txt" << EOF
BUILD DATE: ${BUILD_DATE}
═══════════════════════════════════════════════════════════════
- WHAT IS VEILITH PORTABLE?
+ WHAT IS KHIMERA PORTABLE?
═══════════════════════════════════════════════════════════════
-Veilith Portable is a zero-installation, privacy-first messenger
+Khimera Portable is a zero-installation, privacy-first messenger
that runs directly from USB drives on multiple platforms:
✓ Windows (x86_64)
@@ -168,14 +168,14 @@ No traces left on the host system.
LINUX / macOS:
1. Open terminal in this directory
2. Run: ./launcher
- 3. Or: cd Linux && ./veilith-linux
+ 3. Or: cd Linux && ./khimera-linux
WINDOWS:
1. Double-click: launcher.bat
- 2. Or: Double-click: Windows/veilith.exe
+ 2. Or: Double-click: Windows/khimera.exe
ANDROID:
- 1. Copy Android/veilith.apk to your phone
+ 1. Copy Android/khimera.apk to your phone
2. Enable "Unknown Sources" in settings
3. Install the APK
4. Launch from app drawer
@@ -185,15 +185,15 @@ ANDROID:
BUNDLE STRUCTURE
═══════════════════════════════════════════════════════════════
-veilith-usb-v${VERSION}/
+khimera-usb-v${VERSION}/
├── launcher # Smart launcher (Linux/Mac)
├── launcher.bat # Windows launcher
├── Windows/ # Windows executable
-│ └── veilith.exe
+│ └── khimera.exe
├── Linux/ # Linux executable
-│ └── veilith-linux
+│ └── khimera-linux
├── Android/ # Android APK
-│ └── veilith.apk
+│ └── khimera.apk
├── data/ # YOUR DATA (encrypted)
│ ├── identity.enc # Your cryptographic identity
│ └── contacts.enc # Your contact list
@@ -248,11 +248,11 @@ PRIVACY:
LINUX:
Permission denied?
chmod +x launcher
- chmod +x Linux/veilith-linux
+ chmod +x Linux/khimera-linux
WINDOWS:
Antivirus blocking?
- Add veilith.exe to exceptions
+ Add khimera.exe to exceptions
Won't start?
Right-click → Run as Administrator (one time)
@@ -266,7 +266,7 @@ ANDROID:
FIRST RUN
═══════════════════════════════════════════════════════════════
-On first run, Veilith will:
+On first run, Khimera will:
1. Create a new cryptographic identity
2. Ask for a passphrase to protect it
3. Save encrypted identity to data/identity.enc
@@ -282,9 +282,9 @@ On subsequent runs:
SUPPORT
═══════════════════════════════════════════════════════════════
- Website: https://veilith-messenger.org
- Email: support@veilith-messenger.org
- Security: security@veilith-messenger.org
+ Website: https://khimera-messenger.org
+ Email: support@khimera-messenger.org
+ Security: security@khimera-messenger.org
═══════════════════════════════════════════════════════════════
@@ -297,7 +297,7 @@ See docs/LICENSE.txt for licensing information.
Built: ${BUILD_DATE}
Version: ${VERSION}
-Veilith Portable - Privacy you can carry
+Khimera Portable - Privacy you can carry
EOF
echo -e "${GREEN}✓${NC} README created"
@@ -329,13 +329,13 @@ echo ""
echo -e "${YELLOW}[Summary]${NC} Bundle summary..."
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
-if [ -f "$BUNDLE_NAME/Linux/veilith-linux" ]; then
- LINUX_SIZE=$(du -h "$BUNDLE_NAME/Linux/veilith-linux" | cut -f1)
+if [ -f "$BUNDLE_NAME/Linux/khimera-linux" ]; then
+ LINUX_SIZE=$(du -h "$BUNDLE_NAME/Linux/khimera-linux" | cut -f1)
echo " Linux: ${LINUX_SIZE}"
fi
-if [ -f "$BUNDLE_NAME/Windows/veilith.exe" ]; then
- WINDOWS_SIZE=$(du -h "$BUNDLE_NAME/Windows/veilith.exe" | cut -f1)
+if [ -f "$BUNDLE_NAME/Windows/khimera.exe" ]; then
+ WINDOWS_SIZE=$(du -h "$BUNDLE_NAME/Windows/khimera.exe" | cut -f1)
echo " Windows: ${WINDOWS_SIZE}"
fi
@@ -380,5 +380,5 @@ echo "To distribute:"
echo " • Share ${BUNDLE_NAME}.zip (Windows users)"
echo " • Share ${BUNDLE_NAME}.tar.gz (Linux users)"
echo ""
-echo -e "${CYAN}Veilith Portable - Privacy you can carry${NC}"
+echo -e "${CYAN}Khimera Portable - Privacy you can carry${NC}"
echo ""
diff --git a/go.mod b/go.mod
index 5701cdd..bb92398 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module veilith
+module khimera
go 1.21
diff --git a/veilith-main.go b/khimera-main.go
index 72e5c25..2099ae5 100644
--- a/veilith-main.go
+++ b/khimera-main.go
@@ -1,4 +1,4 @@
-// cmd/veilith-portable/main.go
+// cmd/khimera-portable/main.go
package main
import (
@@ -12,15 +12,15 @@ import (
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/widget"
- "veilith/addressbook"
- "veilith/identity"
- "veilith/session"
- "veilith/transport"
- "veilith/transport/mesh"
- "veilith/transport/tor"
+ "khimera/addressbook"
+ "khimera/identity"
+ "khimera/session"
+ "khimera/transport"
+ "khimera/transport/mesh"
+ "khimera/transport/tor"
)
-// PortableApp represents the portable Veilith application
+// PortableApp represents the portable Khimera application
type PortableApp struct {
config *PortableConfig
identity *identity.Identity
@@ -46,7 +46,7 @@ type PortableConfig struct {
func main() {
fmt.Println("╔════════════════════════════════════════╗")
- fmt.Println("║ VEILITH PORTABLE v0.9 ║")
+ fmt.Println("║ KHIMERA PORTABLE v0.9 ║")
fmt.Println("║ Privacy-First P2P Messenger ║")
fmt.Println("╚════════════════════════════════════════╝")
fmt.Println()
@@ -188,10 +188,10 @@ func (pa *PortableApp) setupDirectories() error {
// startGUI launches the portable GUI application
func (pa *PortableApp) startGUI() {
myApp := app.New()
- myWindow := myApp.NewWindow("Veilith Portable v0.9")
+ myWindow := myApp.NewWindow("Khimera Portable v0.9")
// Welcome screen
- welcomeLabel := widget.NewLabel("Welcome to Veilith Portable")
+ welcomeLabel := widget.NewLabel("Welcome to Khimera Portable")
welcomeLabel.Alignment = fyne.TextAlignCenter
infoLabel := widget.NewLabel(fmt.Sprintf(
diff --git a/launcher.bat b/launcher.bat
index 95d8e5e..1dea813 100644
--- a/launcher.bat
+++ b/launcher.bat
@@ -1,15 +1,15 @@
@echo off
-REM Veilith Portable - Windows Launcher
+REM Khimera Portable - Windows Launcher
REM Automatically launches the Windows executable with portable settings
-title Veilith Portable v0.9 - Launcher
+title Khimera Portable v0.9 - Launcher
cls
echo.
echo ========================================================
echo.
-echo VEILITH PORTABLE v0.9
+echo KHIMERA PORTABLE v0.9
echo Privacy-First P2P Messenger
echo Windows Launcher
echo.
@@ -40,13 +40,13 @@ if "%DRIVE_LETTER%" GEQ "E" (
echo.
REM Check if executable exists
-if not exist "Windows\veilith.exe" (
+if not exist "Windows\khimera.exe" (
echo.
echo ========================================================
echo ERROR: Windows executable not found!
echo ========================================================
echo.
- echo Expected location: Windows\veilith.exe
+ echo Expected location: Windows\khimera.exe
echo.
echo Please build the Windows executable:
echo make windows
@@ -66,24 +66,24 @@ if not exist "temp" mkdir temp
echo [Launch]
echo --------------------------------------------------------
echo.
-echo Starting Veilith Portable...
+echo Starting Khimera Portable...
echo.
REM Set environment variables for portable mode
-set "VEILITH_PORTABLE=1"
-set "VEILITH_DATA_DIR=%SCRIPT_DIR%data"
-set "VEILITH_TOR_DIR=%SCRIPT_DIR%tor"
-set "VEILITH_TEMP_DIR=%SCRIPT_DIR%temp"
+set "KHIMERA_PORTABLE=1"
+set "KHIMERA_DATA_DIR=%SCRIPT_DIR%data"
+set "KHIMERA_TOR_DIR=%SCRIPT_DIR%tor"
+set "KHIMERA_TEMP_DIR=%SCRIPT_DIR%temp"
REM Change to Windows directory and launch
cd /d "%SCRIPT_DIR%Windows"
-start "" "veilith.exe"
+start "" "khimera.exe"
REM Check if launch was successful
if errorlevel 1 (
echo.
echo ========================================================
- echo ERROR: Failed to launch Veilith
+ echo ERROR: Failed to launch Khimera
echo ========================================================
echo.
echo Possible issues:
@@ -93,7 +93,7 @@ if errorlevel 1 (
echo - Missing dependencies
echo.
echo Troubleshooting:
- echo 1. Add veilith.exe to antivirus exceptions
+ echo 1. Add khimera.exe to antivirus exceptions
echo 2. Run as Administrator (one time)
echo 3. Check USB drive is not read-only
echo 4. Verify Windows version compatibility
@@ -104,7 +104,7 @@ if errorlevel 1 (
REM Success
echo.
-echo Veilith launched successfully!
+echo Khimera launched successfully!
echo.
echo The application window should open shortly...
echo You can close this window.
diff --git a/transport/mesh/mesh.go b/transport/mesh/mesh.go
index dbe50e1..cf757ee 100644
--- a/transport/mesh/mesh.go
+++ b/transport/mesh/mesh.go
@@ -7,7 +7,7 @@ import (
"sync"
"time"
- "veilith/transport"
+ "khimera/transport"
)
// MeshTransport implements peer-to-peer mesh networking
diff --git a/transport/mesh/storeforward.go b/transport/mesh/storeforward.go
index 1fcb93d..eb4fe48 100644
--- a/transport/mesh/storeforward.go
+++ b/transport/mesh/storeforward.go
@@ -51,7 +51,7 @@ type QueueConfig struct {
func NewMessageQueue(config *QueueConfig) (*MessageQueue, error) {
if config == nil {
config = &QueueConfig{
- QueueDir: filepath.Join(os.TempDir(), "veilith-queue"),
+ QueueDir: filepath.Join(os.TempDir(), "khimera-queue"),
MaxAge: 24 * time.Hour,
MaxSize: 1000,
MaxAttempts: 10,
diff --git a/transport/tor/embedded.go b/transport/tor/embedded.go
index c1800d8..fd92805 100644
--- a/transport/tor/embedded.go
+++ b/transport/tor/embedded.go
@@ -56,7 +56,7 @@ func NewEmbeddedTor(config *EmbeddedTorConfig) (*EmbeddedTor, error) {
if dataDir == "" {
// Use temp directory
tmpDir := os.TempDir()
- dataDir = filepath.Join(tmpDir, "veilith-tor-"+randomString(8))
+ dataDir = filepath.Join(tmpDir, "khimera-tor-"+randomString(8))
}
if err := os.MkdirAll(dataDir, 0700); err != nil {
@@ -168,7 +168,7 @@ func (et *EmbeddedTor) Start() error {
// writeTorrc writes Tor configuration file
func (et *EmbeddedTor) writeTorrc(path string) error {
- config := fmt.Sprintf(`# Veilith Embedded Tor Configuration
+ config := fmt.Sprintf(`# Khimera Embedded Tor Configuration
# Data directory
DataDirectory %s
diff --git a/transport/tor/tor.go b/transport/tor/tor.go
index a6a1e35..1e402c6 100644
--- a/transport/tor/tor.go
+++ b/transport/tor/tor.go
@@ -8,7 +8,7 @@ import (
"golang.org/x/net/proxy"
- "veilith/transport"
+ "khimera/transport"
)
// TorTransport implements Tor-based networking