Re: Transfer ENCRYPT password field to another server

2013-07-20 Thread Rik Wasmus
> From: Johan De Meersman To:J Gao @ 2013-07-19 > > From: "J Gao" > > Subject: Transfer ENCRYPT password field to another server > > > > So, is there a way to make the MySQL encrypted password string > > "2I6JOeg.JukJ." convert to MD5 ha

Re: Transfer ENCRYPT password field to another server

2013-07-19 Thread Johan De Meersman
- Original Message - > From: "J Gao" > Subject: Transfer ENCRYPT password field to another server > > So, is there a way to make the MySQL encrypted password string > "2I6JOeg.JukJ." convert to MD5 hash "$1$."? Nope. Encrypt

Transfer ENCRYPT password field to another server

2013-07-18 Thread J Gao
Hi, All, I am having trouble to transfer email user account which is saved in MySQL to another server. Here is the detail: I have an old email server which using MySQL to store user account information. The password field uses MySQL ENCRYPT function to save the users password. So if I want c

encrypt -> password

2008-01-20 Thread Luca Ferrari
Hi all, I've got an account table with password encrypted thru the encrypt() function, and I should transfer them to a table with password() function. I don't want to decrypt the password, and I'd like to know if there's a way to build the password hash from the encrypt one. Any suggestion? Th

Re: encrypt password

2002-03-03 Thread Carsten Gehling
ten - Original Message - From: "Al Caponi" <[EMAIL PROTECTED]> To: "mysql" <[EMAIL PROTECTED]> Sent: Monday, March 04, 2002 7:18 AM Subject: RE: encrypt password > http://www.mysql.com/doc/M/i/Miscellaneous_functions.html > > Using the PASSWORD funct

RE: encrypt password

2002-03-03 Thread Al Caponi
SELECT with the resulting String. Regards, Al > -Original Message- > From: Manish Mehta [mailto:[EMAIL PROTECTED]] > Sent: Monday, March 04, 2002 2:12 PM > To: mysql > Subject: encrypt password > > > Hi , > > I am working in mysql . with the help of password() f

encrypt password

2002-03-03 Thread Manish Mehta
Hi , I am working in mysql . with the help of password() function I insert the data in some table . for example :- insert into a values (password('name')); when I fire select query . It shows me this -> 23e6065b74 I wants to decrypt the data again in same format as I insert with Select query.