Re: utf8 and md5.

2011-05-05 Thread apm
Answer was: my $bytes=encode("utf16LE", $pass); my $md5=uc(md5_hex($bytes)); 06.05.2011 03:29, Natal Ngétal пишет: Le jeudi 05 mai 2011 à 10:34:51, apm a écrit : For example, that c# code return C3-1A-C6-05-79-3F-58-0B-38-6C-0F-B5-3F-1B-97-75 for string 12345 With string 12345. I have

Re: utf8 and md5.

2011-05-05 Thread Natal Ngétal
Le jeudi 05 mai 2011 à 10:34:51, apm a écrit : > For example, that c# code return > C3-1A-C6-05-79-3F-58-0B-38-6C-0F-B5-3F-1B-97-75 > for string 12345 With string 12345. I have try with md5sum and md5_hex(). echo -n 12345 | md5sum 827ccb0eea8a706c4c34a16891f84e7b I have the same result with md5_h

Re: utf8 and md5.

2011-05-05 Thread apm
just md5_hex( doesnt work. For example, that c# code return C3-1A-C6-05-79-3F-58-0B-38-6C-0F-B5-3F-1B-97-75 for string 12345 05.05.2011 21:59, Lawrence Statton : On 05/05/2011 10:53 AM, apm wrote: I have old legacy code on .net 1.1 c# Byte[] clearBytes = new UnicodeEncoding().GetBytes(cl

Re: utf8 and md5.

2011-05-05 Thread Lawrence Statton
On 05/05/2011 10:53 AM, apm wrote: I have old legacy code on .net 1.1 c# Byte[] clearBytes = new UnicodeEncoding().GetBytes(cleanString); Byte[] hashedBytes = ((HashAlgorithm) CryptoConfig.CreateFromName("MD5")).ComputeHash(clearBytes); return BitConverter