L2J Revision 5937:
L2JDP Revision 9641:
I'd like to know what encryption method does L2J High Five database uses. To be more accurate, when users create account there's special encryption in accounts table for password field. I'd like to know the exact PHP encryption from normal text to that encrypted password. Thanks in advance!
L2j High Five Database password encryption method
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
- Posts: 6
- Joined: Sat Oct 12, 2013 9:00 am
- VlLight
- L2j Veteran
- Posts: 577
- Joined: Fri Dec 14, 2007 11:58 am
- Location: Russia
Re: L2j High Five Database password encryption method
Code: Select all
$encodedPass = base64_encode(pack('H*', sha1($userpass)))
-
- Posts: 6
- Joined: Sat Oct 12, 2013 9:00 am
Re: L2j High Five Database password encryption method
That's not it, I've searched it and it seems L2J password encryption was changed in High Five.
-
- Posts: 6
- Joined: Sat Oct 12, 2013 9:00 am
Re: L2j High Five Database password encryption method
Oh previously it was utf8_encode now it's sha1 thanks now it works!
- UnAfraid
- L2j Veteran
- Posts: 4199
- Joined: Mon Jul 23, 2007 4:25 pm
- Location: Bulgaria
- Contact:
Re: L2j High Five Database password encryption method
It hasnt changed utf8_encode can be added within sha1svardiashvili wrote:Oh previously it was utf8_encode now it's sha1 thanks now it works!