View Full Version : Will v 2.2.1 encrypted password affect my other applications?
f150guy
Mon 19th Nov '01, 6:11pm
Quick question...
I have several ColdFusion applications on my site that utilize the vB member tables for authentication. With the addition of encrypted passwords in vB 2.2.0, will my current CF SQL queries be affected at all? Thanks in advance!
Daroz
Mon 19th Nov '01, 7:19pm
In short yes...
If you're checking like this now:
if ($passwordfromuser == $dbquery["password"]) {
// pass ok
} else { // go away }
You'll need to change to this:
if (md5($passwordfromuser) == $dbquery["password"]) {
// pass ok
} else { // go away }
I don't program in CF, so your milage will vary, but that's the general idea.
-- Daroz
f150guy
Mon 19th Nov '01, 10:41pm
If the password is encypted using MD5, then I should be able to use ColdFusion's hash() function. Looks like I may be able to upgrade after all...
tubedogg
Tue 20th Nov '01, 1:14pm
Originally posted by f150guy
If the password is encypted using MD5... It is.
vBulletin® v3.8.0 Beta 4, Copyright ©2000-2008, Jelsoft Enterprises Ltd.