Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

User password encryption algorithm

Asked Modified Viewed 4,420 times
R
ROZEUS
R
ROZEUS 10
  • Newbie, joined since
  • Contributed 4 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
asked
Newbie

As the title says, I want to modify the password encryption algorithm to only md5
I use the latest version of php-fusion.
Thanks !

Merged on Jul 31 2012 at 01:36:23:
Please?
Edited by ROZEUS on 31-07-2012 01:36,
0 replies

9 posts

P
PolarFox
P
  • Veteran Member, joined since
  • Contributed 1,633 posts on the community forums.
  • Started 29 threads in the forums
answered
Veteran Member

Use old version (7.01)
0 replies
G
gh0st2k
G
Ex Senior Dev.
  • Member, joined since
  • Contributed 131 posts on the community forums.
answered
Member

This is not secure enough... don't even try to use it...
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

Use 7.01 :)
0 replies
R
ROZEUS
R
ROZEUS 10
  • Newbie, joined since
  • Contributed 4 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

Not even a combination with base64 and md5?
0 replies
G
gh0st2k
G
Ex Senior Dev.
  • Member, joined since
  • Contributed 131 posts on the community forums.
answered
Member

No... this isn't a hashing algorithm.
Password -> base64_encode -> base64_decode -> Password.
Password -> sha256 -> hash -> ... there's no way back.

You can change the hashing algorithm in the settings table to a different hash algorithm, but sha256 is good enough atm.
0 replies
R
ROZEUS
R
ROZEUS 10
  • Newbie, joined since
  • Contributed 4 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

I want to use the database with a gameserver that doesn't have all the hashing algorithms..
I only have md5 and base64 available atm.
0 replies
G
gh0st2k
G
Ex Senior Dev.
  • Member, joined since
  • Contributed 131 posts on the community forums.
answered
Member

Can you post more details or a documentation about the server?!
You can set the algorithm with the "password_algorithm" in the settings table, but it is not recommend to change this value!

I don't much about Gaming Servers but you should be able to send the password to the server during the login... or if it has a web frontend you can set the session or cookie to identify the user.
0 replies
P
PolarFox
P
  • Veteran Member, joined since
  • Contributed 1,633 posts on the community forums.
  • Started 29 threads in the forums
answered
Veteran Member

You can add new user-field with new(or original) password [md5] also.
0 replies
R
ROZEUS
R
ROZEUS 10
  • Newbie, joined since
  • Contributed 4 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

The gameserver comunicates directly with the database, no interaction with the php part.
What about the salt? I need it removed.
I looked in the php class but it's too complicated for me to understand...

It worked with md5 by modifying the settings in the database but in the php class it's twice md5 encryption :D.
Problem solved, thanks.
Edited by ROZEUS on 05-08-2012 14:52,
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 9 posts
  • Votes 0 votes
  • Topic users 4 members

4 participants

C
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
P
P
  • Veteran Member, joined since
  • Contributed 1,633 posts on the community forums.
  • Started 29 threads in the forums
G
G
Ex Senior Dev.
  • Member, joined since
  • Contributed 131 posts on the community forums.
R
R
ROZEUS 10
  • Newbie, joined since
  • Contributed 4 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet