PUBLIC UTILITY · NO LOGIN
Password → hash.
Generate a PHP-compatible admin password hash. Copy it into your database yourself; this page never updates an account.
Uses bcrypt with a fresh random salt. Different hashes for the same password are expected. Input is sent only to this server over HTTPS; the application does not store or log it. Use this utility only on your own trusted deployment. Do not enable request-body logging or third-party analytics here.
Set the database column to
VARCHAR(255). Login verifies the hash with password_verify(); it does not compare freshly generated hashes.