I have a symfony project using FOSUSerBundle to manage users. Now I need to access the database via Simple Rest Webservice, Encryption during registration: Sha512, How can I get the same hash result as FOS I tried:
hash('sha512',($salt.$password));
and
hash('sha512',($password.$salt));
But it does not work! Any suggestions?
Asmaa source share