Uggh, once again, for those that don't seem to understand what I am doing here, and what I need (as I explained this quite a few times now)
Firstly, I need to find out which hash is used by rom itself for encryption. If it's system crypt() (highly doubtful, but maybe), then I'll go about my merry way and try to figure out what I'm doing wrong elsewhere. IF it's not that (or otherwise php compatible) then I need to find out how to decrypt the password, without changing everything to clear passwords. Is it THAT hard of a question to ask which hash is used? On Sunday 22 September 2002 11:46 pm, Dale Kingston wrote: > How did you crypt it in the first place. Seems like you did something and > don't know what you did. Cause you should beable to do it the exact way you > did it the first time. And they should work the same way. I really dought > you can decrypt something crypt has gotten it's hands on. > > ----- Original Message ----- > From: "Tom Whiting" <[EMAIL PROTECTED]> > To: <[email protected]> > Sent: Sunday, September 22, 2002 8:36 PM > Subject: Re: Odd crypt question > > On Sunday 22 September 2002 11:34 pm, Dale Kingston wrote: > > well Question why are you asking a rom coding list how to code my sql and > > php? > > I'm NOT > I'm trying to figure out (from the rom list) which hash is used since it's > not > system crypt(), or if it is I'm lost. I can work my way through most php > stuff myself. > > >Not to start a flame or anything but you should have seen rom related > > answers coming back. And I still bet you could do it how rom does. I > > think your over complicating something that is very easy. > > Then let's see you do it. No, i'm not overcomplicating something at all.. > it's > really simple (or it should ibe if the proper hash was used), which is WHY > I'm trying to find out which hash is used. Apparently it's not most of the > common somehow. Reading through everything it shoudl simply be system > crypt90, but it's not, otherwise my examples would have worked. > > >Eat the elephant one > > bit at a time or you'll never get anywhere. > > > > ----- Original Message ----- > > From: "Tom Whiting" <[EMAIL PROTECTED]> > > To: "Jason Gauthier" <[EMAIL PROTECTED]> > > Cc: <[email protected]> > > Sent: Sunday, September 22, 2002 8:22 PM > > Subject: Re: Odd crypt question > > > > > You never said you would be using PHP, or anything else for that > > > matter. We can't read your mind. > > > > If it's custom, is there a way to take this password, decrypt it (without > > having to use plain passwords), in order for it to be encrypted, or > > thrown into the database so that php/sql can recognize it somehow, or is > > this pretty > > much out of the question? > > Sure i did;) Right there even > > > > > "because php does NOT recognize the encryption method used here" > > > Bullshit :) > > > > Believe me, i've been up and down through this exact page, I've tried > > each and > > every method (crypt, blowfish,md5, des) over the past few weeks, all with > > zero positive results. Obviously i'm missing something here (wouldn't be > > the first time), but what?? > > the logical assumption would be > > if (crypt($pass,$dbpass) == $dbpass) > > { > > echo 'yay'; > > return; > > } > > else > > { > > echo 'nope'; > > return; > > } > > where $pass=formvalue and $dbpass=database value > > would work, which I have tried, yet that isn't it.

