Live Helper Chat support forum.. Forum is locked. New place for questions - Github Discussions
You are not logged in.
Pages: 1
consider the following case:
<?php
$password = 'user1';
$secretHash ='a76140ce05';
echo sha1($password.$secretHash.sha1($password)); ?>
it shows
4f8316648a54696fe85c280f54f29f3dfae0d237
but its totally different in database.
It shows $2y$10$NZsLU0.yowyF4y.NJ.4iLeUeV9azrnU6rdAgwwZ.zRXP8S5j1h7B6
How to pass the correct bytes to database?
Offline
See this function. It's not sha1 anymore in db it's
https://github.com/LiveHelperChat/liveh … er.php#L50
Offline
what is PasswordCompat\binary\_ means in password.php
how can i got the salt?
PasswordCompat\binary\_ is not working
Last edited by pcson2003 (2017-12-08 09:39:16)
Offline
You do not need any salt in new versions of live helper chat. It's using standard php function
https://secure.php.net/manual/en/functi … d-hash.php
Offline
how can i generate this hash in c# , is it impossible?
Offline
Pages: 1