Jump to content

Encrypt password


ryanfilard

Recommended Posts

How would I encrypt the password and encrypt all the old users passwords too?

 

Here is part of my code.

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
  $insertSQL = sprintf("INSERT INTO users (fname, username, password, email) VALUES (%s, %s, %s, %s)",
                       GetSQLValueString($_POST['fname'], "text"),
                       GetSQLValueString($_POST['Username'], "text"),
                       GetSQLValueString($_POST['password'], "text"),
                       GetSQLValueString($_POST['email'], "text"));

Link to comment
Share on other sites

To alter passwords that are already in your database, you will need to use an ALTER TABLE statement. As fir the encryption of new passwords bring entered into your db, what type of encryption are you looking to use? Salt, sha1, hash, md5 etc

Link to comment
Share on other sites

You'll want to use the sha1() function before insertion into your database. Since sha1 is 160, and depending on how many bits pwr character, would effect the length of the value, 20 or 40. So I recommend using BINARY(20) and the UNHEX function to convert the SHA1 value to binary.

 

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.