BitAegiris Support CenterProtect Your Digital World with BitAegiris
At BitAegiris, we are committed to providing you with the best password management experience while ensuring top-tier security. If you ever need assistance, have questions, or run into issues, our support team is available 24/7 to help.
How Your Data Stays Secure
  • ✅ We use two of the most trusted online databases:
    • Mongodb
    • Clerk
  • ✅ Before saving your data, we customize it using the master code you enter.
  • ✅ We use AES-256 encryption, which secures your data before storing it and decrypts it when you need access.
  • ✅ We use zero-knowledge architecture, meaning no one, not even our team, can see your passwords.

What we do to your password

    We hashed your mastercode using this code:
       const hashedCode = await bcrypt.hash(code, 10);
    We customize your password before hashing using this code:
     const raw = JSON.stringify( ...newPassword, password: form.mastercode + 'V@u|t!y' + form.password, user: User?.user?.id );
    We encrypt your password using this code:
      const secretSalt = process.env.SECRET_SALT; // Extra security layer
    // we cant disclose key and iv for security reason but they are formed using the mastercode
    const cipher = crypto.createCipheriv(algorithm, key, iv);
    let encrypted = cipher.update(body.password, "utf8", "hex");
    encrypted += cipher.final("hex");
    When you enter correct mastercode we decrypt it and displays it using this code:
     //We are sorry we cant disclose key and iv for security reason but they are formed using the mastercode
    const decipher = crypto.createDecipheriv(algorithm, storedKey, providedIv);
    let decrypted = decipher.update(element.password, "hex", "utf8");
    decrypted += decipher.final("utf8");
    return ...element, password: decrypted ;
Can I Use BitAegiris on Multiple Devices?
  • Yes! BitAegiris is designed to sync your passwords securely across:
    1. - 💻 Desktop (Windows, macOS, Linux)
    2. - 📱 Mobile (iOS & Android)
    3. - 🌍 Web Browser Extensions (Chrome, Firefox, Edge, Brave)
  • Your data is always encrypted and accessible from anywhere.
How to Use BitAegiris
  • Step 1 : Sign In to BitAegiris .
  • Step 2 : Click on 'Get Started' or go to 'Manager'. .
  • Step 3 : Create and remember a master code.
  • Step 4 : Select what you want to save: Notes or Passwords.
  • Step 5 : You're ready! Start saving your credentials securely in BitAegiris.
How to see your notes or password
  • Enter your master code in the input field and click the button.

Thanks For Visiting

Wanna Contribute Us, We Will Be So Thankful From Your Contributions

Join us in taking control of your digital security—because your passwords deserve the best protection.