aegis-q
Version:
AEGIS-Q Quantum-Resistant Protection with SNITCH MODE
19 lines (14 loc) • 453 B
JavaScript
console.log('AEGIS-Q Test Version');
const password = process.argv[2];
if (!password) {
console.log('Usage: node bin/aegis-test.js YOUR_PASSWORD');
process.exit(1);
}
if (password.length < 12) {
console.log('Password too short! Need 12+ characters');
} else {
console.log('✅ Password accepted!');
console.log(`Length: ${password.length} characters`);
console.log('🛡️ AEGIS-Q ready to protect!');
}