in my database I saved the the passwords with
password_hash($user->getPassword(), PASSWORD_BCRYPT);
In the login form the user enter this password and I encoded the password to a bcrypt string and submit the crypted password (because I've no SSL) to the server.
So my question is it is possible to compare two hashes which are generated with bcrypt?