Page 1 of 1

Question on password ecryption

Posted: Tue Oct 26, 2010 11:50 am
by Eduard
Hello guys,sorry if I'm posting my question not in the right forum section. I would like to ask one question,whats the account password encryption scheme in l2j? One way hash? If yes then which?

Re: Quest on password ecryption

Posted: Tue Oct 26, 2010 11:53 am
by _DS_
Function loginValid in LoginController.java.
And use search, php function for generating password posted several times.

Re: Question on password ecryption

Posted: Sun Dec 26, 2010 8:07 am
by JoeDaFlow
Eduard wrote:Hello guys,sorry if I'm posting my question not in the right forum section. I would like to ask one question,whats the account password encryption scheme in l2j? One way hash? If yes then which?
Base64(Sha-1)

Re: Question on password ecryption

Posted: Mon Dec 27, 2010 12:13 am
by qwerty13
By the way, current encryption is very outdated, we should think about something better. Whirlpool, for example.

Re: Question on password ecryption

Posted: Mon Dec 27, 2010 11:51 am
by _DS_
No need. Who want another encryption - already using it. Others will just complain "where my paaaaasswords ?".

Re: Question on password ecryption

Posted: Wed May 18, 2011 12:03 pm
by razvypp
encryption used is base64_encode(pack("H*", sha1(utf8_encode($pass))))

Re: Question on password ecryption

Posted: Wed May 18, 2011 12:18 pm
by Zoey76
razvypp wrote:encryption used is base64_encode(pack("H*", sha1(utf8_encode($pass))))
Please stop necroposting, this was answered several times in forum.