Talk:AddAccount: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "=== Password limit === Pasword's maxlength is 30 characters. If you try more, function will return ''false'' (while '''addaccount''' command returns ''syntax error'').")
 
No edit summary
 
(5 intermediate revisions by one other user not shown)
Line 1: Line 1:
=== Password limit ===
=== Password length limit ===
Pasword's maxlength is 30 characters. If you try more, function will return ''false'' (while '''addaccount''' command returns ''syntax error'').
Password's maxlength is 30 characters. If you try more, function will return ''false'' (while '''addaccount''' command returns ''syntax error'').
 
PS: I just tried to store md5 hash, but everytime it failed (hash length - 32 chars). -- [[User:Leonardo|Leonardo]] 06:08, 4 September 2013 (UTC)
 
You shouldn't use a md5 hash, passwords should be sent plaintext. They are being encrypted automaticly. --[[User:X86dev|X86dev]] 06:58, 4 September 2013 (UTC)

Latest revision as of 06:58, 4 September 2013

Password length limit

Password's maxlength is 30 characters. If you try more, function will return false (while addaccount command returns syntax error).

PS: I just tried to store md5 hash, but everytime it failed (hash length - 32 chars). -- Leonardo 06:08, 4 September 2013 (UTC)

You shouldn't use a md5 hash, passwords should be sent plaintext. They are being encrypted automaticly. --X86dev 06:58, 4 September 2013 (UTC)