Jump to content

Encrypt problem


amaru

Recommended Posts

I use this function to encrypt passwords. I can't use md5 because i use the passwords in a sa-mp server.

function cryptpw($password)
   {
      for($i=0; $i < strlen($password); $i++)
      {
         $temp = ord($password[$i]);
         $temp += (3^$i) * ($i % 15);
         if($temp > (0xff))
         {
            $temp -= 256;
         }
         $password[$i] = chr($temp);
      }  
      return $password;
   }

It encrypts the password but it puts some signs at the end of it like '}' or '�'. How can i remove them?

Link to comment
Share on other sites

Try this what is the output

echo mb_convert_encoding($crypted_password, 'UTF-8');

 

Also what is sa-mp server? I still think this is a character encoding problem, either in your browser settings, php, or html. Or combination of these.

Link to comment
Share on other sites

It depends on what exactly you want, but you could try using base64_encode() on the result of your encryption.

 

Also I might rethink your calculation for the value to add - for many values of $i it has little or no effect, and it is very predictable.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.