Bcrypt.CompareHashAndPasswordMethod
CompareHashAndPassword compares a bcrypt hashed password with its possible plaintext equivalent. Returns `true` on success, or `false` on failure.
Bcrypt.GenerateFromPasswordFunction
GenerateFromPassword returns the bcrypt hash of the password at the given cost.
If the cost given is less than `MinCost`, the cost will be set to `DefaultCost`, instead.
Use `CompareHashAndPassword`, as defined in this package, to compare the returned hashed password with its cleartext version.