Hi,
we would like to use our external service to auth against XF accounts. I found following post but it is related to XF1.x so i'd like to know if this is still valid for XF2 or if it is different.
Thank you in advance for your reply
Alex
we would like to use our external service to auth against XF accounts. I found following post but it is related to XF1.x so i'd like to know if this is still valid for XF2 or if it is different.
The passwords are stored in the xf_user_authenticate table in the database. See this file for the auth code:
library/XenForo/Authentication/Core.php
XenForo uses a salted double hash using either SHA1 OR SHA256:
sha1(sha1(password) . salt)
or:
sha256(sha256(password) . salt)
Thank you in advance for your reply
Alex