Commit c42c25ed authored by Côme Bernigaud's avatar Côme Bernigaud Committed by Benoit Mortier
Browse files

Fixes #3757 SASL method must not compare hashes

Showing with 6 additions and 0 deletions
+6 -0
...@@ -88,6 +88,12 @@ class passwordMethodsasl extends passwordMethod { ...@@ -88,6 +88,12 @@ class passwordMethodsasl extends passwordMethod {
} }
} }
function checkPassword($pwd, $hash)
{
// We do not store passwords, can’t know if they’re the same
return FALSE;
}
/*! /*!
* \brief Get the hash name * \brief Get the hash name
*/ */
......
  • bmortier @bmortier

    mentioned in issue #1241

    By fwe on 2017-09-02T15:19:07 (imported from GitLab)

    ·

    mentioned in issue #1241

    By fwe on 2017-09-02T15:19:07 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment