# Contact team lead for secure key transfer# Keys are stored in: Dropbox/Backup/Sparkle-VibeTunnel/
Install Private Key
Copy
# Create private directorymkdir -p private# Add key file (get content from secure backup)echo "BASE64_PRIVATE_KEY_HERE" > private/sparkle_private_key# Verify it's ignored by gitgit status # Should not show private/
Verify Setup
Copy
# Test signing with your key./build/SourcePackages/artifacts/sparkle/Sparkle/bin/sign_update \ any_file.dmg \ -f private/sparkle_private_key
# Sign a test fileecho "test" > test.txt./build/SourcePackages/artifacts/sparkle/Sparkle/bin/sign_update \ test.txt \ -f private/sparkle_private_key# The signature should generate successfully# Compare with production signatures to verify