🔐 Secure Password Handling Demo

This demo hashes the password before storage using bcrypt. Even if the database is compromised, raw passwords are never exposed.

🧪 Testing with Postman:

  1. POST to /api/secure-crypto
  2. Set JSON body:
    {
      "username": "secure_user",
      "password": "StrongP@ssw0rd"
    }
  3. Observe the password is securely hashed in the response.