Re: mysql apache md5

2011-03-07 Thread Noel Butler
On Mon, 2011-03-07 at 13:51 +0100, Johan De Meersman wrote: > Umm... I'm no crypto guru, but I've never heard of MD5 having variants, let > alone a salt. MD5 is MD5 is MD5. APR, incidentally, is the Apache Runtime, > afaik - part of the build kit for apache modules. > >

Re: mysql apache md5

2011-03-07 Thread Johan De Meersman
Umm... I'm no crypto guru, but I've never heard of MD5 having variants, let alone a salt. MD5 is MD5 is MD5. APR, incidentally, is the Apache Runtime, afaik - part of the build kit for apache modules. I strongly suspect your problem is on another level. - Original Message --

Re: mysql apache md5

2011-03-06 Thread Edward avanti
s into mysql we want not to use apache auth of encrypt, but use md5 for longer password apache use variant of md5, called md5 -apr, but mysql md5 only uses the -1 type so, when CRM add userlike INSERT INTO users (..other`appass`) values (...other... 'MD5('$PASS') the

Re: mysql apache md5

2011-03-06 Thread Reindl Harald
Sorry but what about are you speaking? what are you doing? and what has this to do with mysql? Am 06.03.2011 05:34, schrieb Edward avanti: > Hi, I am having all sorts of problem getting apache to accept its MD5 > version, this is from a CRM using perl > I've tried concat $apr1$foo

mysql apache md5

2011-03-05 Thread Edward avanti
Hi, I am having all sorts of problem getting apache to accept its MD5 version, this is from a CRM using perl I've tried concat $apr1$foo$ and md5(bar) as best I can tell It doesnt like the md5 part Is there anyway to get this to work? the only thing that does is encrypt, and thats sad,

RE: FW: Re: MD5()

2007-03-12 Thread Neil Tompkins
I just tried and it appears the functions DO NOT work in version 3.23 From: "Neil Tompkins" <[EMAIL PROTECTED]> To: mysql@lists.mysql.com Subject: FW: Re: MD5() Date: Mon, 12 Mar 2007 09:28:27 + I thought the DES_ENCRYPT/DES_DECRYPT functions were released in mysql v

FW: Re: MD5()

2007-03-12 Thread Neil Tompkins
I thought the DES_ENCRYPT/DES_DECRYPT functions were released in mysql version 4 however they work with my version of mySQL 3.23 ? Neil From: "Neil Tompkins" <[EMAIL PROTECTED]> To: mysql@lists.mysql.com Subject: FW: Re: MD5() Date: Sat, 10 Mar 2007 18:24:19 + Strange

FW: Re: MD5()

2007-03-10 Thread Neil Tompkins
Strange the DES_ENCRYPT/DES_DECRYPT functions work with my version of mySQL 3.23 From: "Neil Tompkins" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] CC: mysql@lists.mysql.com Subject: Re: MD5() Date: Sat, 10 Mar 2007 18:20:43 + DES_ENCRYPT/DES_DECRYPT appears to be what we

Re: MD5()

2007-03-10 Thread Neil Tompkins
DES_ENCRYPT/DES_DECRYPT appears to be what we require. Thanks Neil From: "Mogens Melander" <[EMAIL PROTECTED]> To: "Neil Tompkins" <[EMAIL PROTECTED]> CC: mysql@lists.mysql.com Subject: Re: MD5() Date: Sat, 10 Mar 2007 12:19:53 +0100 (CET) Or you might wa

Re: MD5()

2007-03-10 Thread Aaron Cannon
ona MSN/Windows Messenger: [EMAIL PROTECTED] (don't send email to the hotmail address.) - - Original Message - From: "Neil Tompkins" <[EMAIL PROTECTED]> To: Sent: Saturday, March 10, 2007 4:17 AM Subject: MD5() I'm looking to use MD5() to encrypt credit card numbe

Re: MD5()

2007-03-10 Thread Mogens Melander
Or you might want to take a look at DES_ENCRYPT/DES_DECRYPT funktions in the mysql manual. On Sat, March 10, 2007 11:18, Ian P. Christian wrote: > Neil Tompkins wrote: >> I'm looking to use MD5() to encrypt credit card numbers. How do I >> unencrypt this when reading the valu

Re: MD5()

2007-03-10 Thread Ian P. Christian
Neil Tompkins wrote: The problem I have is our mysql database version is 3.23 and we are not in a position to upgrade. Because you are unlikely to be selecting on this data directly, you could use functions of whatever language you're using to connect to the database... for example if you're

Re: MD5()

2007-03-10 Thread Neil Tompkins
The problem I have is our mysql database version is 3.23 and we are not in a position to upgrade. From: "Ian P. Christian" <[EMAIL PROTECTED]> To: Neil Tompkins <[EMAIL PROTECTED]> CC: mysql@lists.mysql.com Subject: Re: MD5() Date: Sat, 10 Mar 2007 10:24:45 + Neil

Re: MD5()

2007-03-10 Thread Ian P. Christian
Neil Tompkins wrote: What do you recommend I use ? http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html That should help you. However... keep in mind that if your application is likely to be accessing this data all the time anyway, if someone compromises your database, chances a

Re: MD5()

2007-03-10 Thread Neil Tompkins
What do you recommend I use ? From: "Ian P. Christian" <[EMAIL PROTECTED]> To: Neil Tompkins <[EMAIL PROTECTED]> CC: mysql@lists.mysql.com Subject: Re: MD5() Date: Sat, 10 Mar 2007 10:18:41 + Neil Tompkins wrote: I'm looking to use MD5() to encrypt cre

Re: MD5()

2007-03-10 Thread Ian P. Christian
Neil Tompkins wrote: I'm looking to use MD5() to encrypt credit card numbers. How do I unencrypt this when reading the value ? you can't. Google for MD5, or better still look at wikipedia, I'm sure they will have something -- Ian P. Christian ~ http://pookey.co.uk -

MD5()

2007-03-10 Thread Neil Tompkins
I'm looking to use MD5() to encrypt credit card numbers. How do I unencrypt this when reading the value ? Thanks, Neil _ Get Hotmail, News, Sport and Entertainment from MSN on your mobile. http://www.msn.txt4conten

Re: password(), sha1() and md5()

2005-08-18 Thread Felix Geerinckx
On 18/08/2005, Martin Schwarz wrote: > When using > 'update TABLE set FIELD=PASSWORD('foo');' > the query > 'select * from TABLE where FIELD=PASSWORD('foo');' > delivers an empty set. > > Same with the SHA1 or MD5 functions. What

password(), sha1() and md5()

2005-08-18 Thread Martin Schwarz
Hello! I am facing the following problem: When using 'update TABLE set FIELD=PASSWORD('foo');' the query 'select * from TABLE where FIELD=PASSWORD('foo');' delivers an empty set. Same with the SHA1 or MD5 functions. I am using Mac OS X Tiger (same

Re: Storing manually diggested Passwords with MD5

2005-08-11 Thread Jasper Bryant-Greene
C.F. Scheidecker Antunes wrote: I will have the password stored in the database with MD5. What I actually need is a manual way to get the password back, that is decoding it. The whole point of MD5 is that you cannot decode it once encoded. When someone enters their password, just MD5 what

Re: Storing manually diggested Passwords with MD5

2005-08-11 Thread Mike Wexler
C.F. Scheidecker Antunes wrote: I am sorry. I meant another thing and wrote something else. If I issue: INSERT INTO table1 values ('username',MD5('password')) I will have the password stored in the database with MD5. What I actually need is a manual way to get the pa

Re: Storing manually diggested Passwords with MD5

2005-08-11 Thread C.F. Scheidecker Antunes
I am sorry. I meant another thing and wrote something else. If I issue: INSERT INTO table1 values ('username',MD5('password')) I will have the password stored in the database with MD5. What I actually need is a manual way to get the password back, that is decoding it.

RE: Storing manually diggested Passwords with MD5

2005-08-11 Thread Partha Dutta
MySQL actually has an MD5() function: mysql> select MD5('password'); +------+ | MD5('password') | +--+ | 5f4dcc3b5aa765d61d8327deb882cf99 | +--+ 1 row in s

Storing manually diggested Passwords with MD5

2005-08-11 Thread C.F. Scheidecker Antunes
Hello all, Is there any function that I could use on a SQL statement to store a password on a table manually using an algorithm like MD5? Thanks, C.F. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: functions md5, crypt

2005-03-22 Thread Gleb Paharenko
Hello. See: http://dev.mysql.com/doc/mysql/en/encryption-functions.html symbulos partners <[EMAIL PROTECTED]> wrote: > Dear friends, > > where is the description of the functions md5 in the manual? where is the > description of the function crypt()? >

Re: functions md5, crypt

2005-03-21 Thread Martijn Tonies
Please stop writing "high priority" e-mails to a mailinglist. Although the problem might be important for you, it's in no way important for the receiver (which is quite a lot of people). People will answer mailinglist questions for free, in their time. I hope you understand. -- Martijn Tonies

Re: functions md5, crypt

2005-03-21 Thread symbulos partners
On Monday 21 Mar 2005 16:32, Michael Stassen wrote: > Which is the first hit if you enter "md5 crypt" in the manual's search box. I use the manual offline, because my connection is too slow. I wonder why the encryption-function chapter is not in my manual. -- symbulos par

Re: functions md5, crypt

2005-03-21 Thread Michael Stassen
Tom Crimmins wrote: On Monday, March 21, 2005 09:27, symbulos partners wrote: Dear friends, where is the description of the functions md5 in the manual? where is the description of the function crypt()? are there are good alternatives? http://dev.mysql.com/doc/mysql/en/encryption-functions.html

RE: functions md5, crypt

2005-03-21 Thread Tom Crimmins
On Monday, March 21, 2005 09:27, symbulos partners wrote: > Dear friends, > > where is the description of the functions md5 in the manual? where is > the description of the function crypt()? > > are there are good alternatives? http://dev.mysql.com/doc/mysql/en/encrypt

functions md5, crypt

2005-03-21 Thread symbulos partners
Dear friends, where is the description of the functions md5 in the manual? where is the description of the function crypt()? are there are good alternatives? -- symbulos partners -.- symbulos - ethical services for your organisation http://www.symbulos.com -- MySQL General Mailing List For

Re: Password (str) vs. MD5 (str)

2004-12-06 Thread Jim Winstead
On Mon, Dec 06, 2004 at 04:21:38PM -0600, [EMAIL PROTECTED] wrote: > does anyone know what type of encryption is used in the PASSWORD(str) > function? When would you use the MD5 vs the PASSWORD function? > > We have a campus standard to use the MD5 encryption so I need to conf

Password (str) vs. MD5 (str)

2004-12-06 Thread lbochicc
does anyone know what type of encryption is used in the PASSWORD(str) function? When would you use the MD5 vs the PASSWORD function? We have a campus standard to use the MD5 encryption so I need to confirm if the PASSWORD function will offer that or not. Thanks, Lauren -- MySQL General

Re: md5 and table field types

2004-04-06 Thread Fagyal, Csongor
Egor Egorov wrote: "Andy B" <[EMAIL PROTECTED]> wrote: hi... what would be the best field type and length for an md5 encrypted password sort of thing?? You can store it in the CHAR(32) column (or VARCHAR(32)). Or for binary MD5 (and not the hex version) a TINYBLOB(16) sh

Re: md5 and table field types

2004-04-06 Thread Egor Egorov
"Andy B" <[EMAIL PROTECTED]> wrote: > hi... > > what would be the best field type and length for an md5 encrypted password sort of > thing?? You can store it in the CHAR(32) column (or VARCHAR(32)). -- For technical support contracts, goto https://order.mysql.c

md5 and table field types

2004-04-02 Thread Andy B
hi... what would be the best field type and length for an md5 encrypted password sort of thing??

table dumps and md5

2004-04-02 Thread Andy B
encrypted passwords with md5, dumping it to a text file with mysqldump and then running that script on a different server. For some strange reason the encrypted passwords lose their encrypted state and are nothing more now than text strings. Is there any way to preserve the state of md5 encryp

Re: MD5-read permission?

2003-08-14 Thread Nils Valentin
221b > > > SELECT username+password+somethingelse FROM user; > > 49726b60ccbf03d6c619632e1db6 > f8ec2c9d79b5f969a96be968e7152bbd > > > > So that way, if someone gets the username/password for this user, they > can't get any data off of the database. > >

Re: MD5-read permission?

2003-08-14 Thread Nils Valentin
fe3b4b388a69ceed38d6a0066e6a221b > > > > > > SELECT username+password+somethingelse FROM user; > > > > 49726b60ccbf03d6c619632e1db6 > > f8ec2c9d79b5f969a96be968e7152bbd > > > > > > > > So that way, if someone gets the username/passwor

Re: MD5-read permission?

2003-08-14 Thread Mark Jay Johansen
2e1db6 > f8ec2c9d79b5f969a96be968e7152bbd > > > > So that way, if someone gets the username/password for this user, they > can't get any data off of the database. > > One thing you have to watch is that you don't use the md5 function for a > user that has o

MD5-read permission?

2003-08-14 Thread Lefevre, Steven
, if someone gets the username/password for this user, they can't get any data off of the database. One thing you have to watch is that you don't use the md5 function for a user that has only md5read permission, because that would double-hash it, and whatever you're checking would fail.

Re: [newbie] how do I force a numerical comparison of two md5 strings

2002-10-31 Thread Michael T. Babcock
Benjamin Pflugmann wrote: So what's left is that you save the real md5 string instead of it's hex representation, e.g. in a CHAR BINARY. That's easiest if you have the binary representation on the client side. I see no easy way of doing it in MySQL if you only have the hex rep (

Re: [newbie] how do I force a numerical comparison of two md5 strings

2002-10-31 Thread Benjamin Pflugmann
Hello. On Thu 2002-10-31 at 13:54:18 -0500, [EMAIL PROTECTED] wrote: > Am I right in assuming that comparing two md5 strings would be faster > if they were compared as two hexadecimal numbers than if they were > compared as two strings? > > If so, is there any way to insist o

[newbie] how do I force a numerical comparison of two md5 strings

2002-10-31 Thread Walter Lee Davis
Am I right in assuming that comparing two md5 strings would be faster if they were compared as two hexadecimal numbers than if they were compared as two strings? If so, is there any way to insist on this in a SQL query? I am using PHP, and would like to know from that perspective if it makes

RE: MD5

2002-06-20 Thread Ed Carp
> -Original Message- > From: Joshua J.Kugler [mailto:[EMAIL PROTECTED]] > Sent: Thursday, June 20, 2002 4:30 PM > To: Kiss Dániel; [EMAIL PROTECTED] > Subject: Re: MD5 > > If you are running Linix, at the prompt type: > > md5sum filename > > I'm sure

Re: MD5

2002-06-20 Thread Joshua J . Kugler
If you are running Linix, at the prompt type: md5sum filename I'm sure you can get md5sum for other Unices as well. j- k- On Thursday 20 June 2002 13:00, Kiss Dániel wrote: > Hi everyone, > > Can anyone tell me how to create an MD5 checksum on a file. > I tried to do

MD5

2002-06-20 Thread Kiss Dániel
Hi everyone, Can anyone tell me how to create an MD5 checksum on a file. I tried to do this by using the MySQL MD5 function, but it does not work on too big files (above 650MB), even if I set max_allow_packet size very big. Is there any small program to do this, anyway? Thx Daniel

Re: MD5

2002-04-09 Thread Christopher Thompson
On Tuesday 09 April 2002 2:13 pm, Andrew Hazen wrote: > Hi, > Can I use the MD5 function in the where clause, as in: > > Select * from table where md5(column)=value >  I see no reason why not but note that you are likely MUCH better off storing column as an MD5 hash, compu

MD5

2002-04-09 Thread Andrew Hazen
Hi, Can I use the MD5 function in the where clause, as in: Select * from table where md5(column)=value spam filter: mysql Andrew Hazen - Before posting, please check: http://www.mysql.com/manual.php (the manual

encode/password/encrypt/md5

2002-02-01 Thread Ricardo Striquer Soares
the password function can not be decrypted can it, `cuz i need to show the users' pass to the sis adm therefore i am considering to use the encode/decode functions, although i am not secure to use those functions, i have read in somewhere its not so confident. does anybody here have some experienc

Efficiently storing md5

2002-01-25 Thread Fred Van Andel
On 25 Jan 2002 07:05:32 +0800, [EMAIL PROTECTED] (Steven Roussey) wrote: >Does anyone have a best practices for efficiently storing md5 hash >values in MySQL? > --snip-- > >Md5 hash-- 16 bytes. >char(32) binary -- 32 bytes. >BIGINT -- 8 bytes --snip--

Efficiently storing md5

2002-01-24 Thread Steven Roussey
Does anyone have a best practices for efficiently storing md5 hash values in MySQL? Since it is a 32 character string of hex numbers, I originally stored them in a char(32) binary column. But that is wasted space (by a factor of 2). And of course, these things add up, both in data files and

Re: Store MD5 hash values

2001-03-21 Thread Scott Baker
Make them a char(32). They will also be 32 chars long, have the DB expect that. At 10:48 AM 3/21/2001 -0600, roger westin wrote: >Whats the best way, any realy good space saving way to store a MD5 value? > >/roger --

Store MD5 hash values

2001-03-21 Thread roger westin
Whats the best way, any realy good space saving way to store a MD5 value? /roger