Google Groups Home
Help | Sign in
Question about using MD5
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  18 messages - Collapse all
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
rhaazy  
View profile
 More options Nov 21 2008, 7:30 am
From: rhaazy <rha...@gmail.com>
Date: Thu, 20 Nov 2008 12:30:29 -0800 (PST)
Local: Fri, Nov 21 2008 7:30 am
Subject: Question about using MD5
Greetings.

I have a client who has a web service that I need to authenticate
with.
He sent me credentials for testing, which I currently have hardcoded.
The password he sent me is the md5 encrypted string.
When I try to create the same string using what should be the original
password I get a different md5 hash.

I had a coworker run the same code I am using against the same
original string and he gets a different hash as well.

This leads me to believe that there is some kind of a key being used.

I have done some research but have only found pieces of information.

From what I have gathered each machine has a machine key which I need
to store in my config file.

So I ask if someone could verify my thoughts, and also perhaps point
me in the correct direction so that I could report back to my client
(who is a developer) about what he needs to provide me for me to
correctly hash the password. (where might he be able to find this key
if it does indeed exist)


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Charles A. Lopez  
View profile
 More options Nov 21 2008, 1:45 pm
From: "Charles A. Lopez" <charlesalo...@gmail.com>
Date: Thu, 20 Nov 2008 21:45:22 -0500
Local: Fri, Nov 21 2008 1:45 pm
Subject: Re: [DotNetDevelopment] Question about using MD5

give us sample data.

--
Charles A. Lopez
charlesalo...@gmail.com

    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
CK  
View profile
 More options Nov 21 2008, 9:26 pm
From: CK <c...@cksiteoftreats.co.uk>
Date: Fri, 21 Nov 2008 02:26:51 -0800 (PST)
Local: Fri, Nov 21 2008 9:26 pm
Subject: Re: Question about using MD5
Hi rhaazy, haven't seen you for a while.

This is in interesting problem, one that as a group we may be able to
identify better.

If everyone runs the following code and posts their results (with .Net
version, OS and 32 / 64 bit), we might be able to track it down:

String password = "passwordabc123987";
            System.Security.Cryptography.MD5 md5 = new
System.Security.Cryptography.MD5CryptoServiceProvider();
            Byte[] result = md5.ComputeHash
(System.Text.ASCIIEncoding.UTF8.GetBytes(password));
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < result.Length; i++)
            {
                sb.Append(result[i].ToString("X2"));
            }
            Console.WriteLine("Encoded Hash: " + sb.ToString());

My results (.Net 2.0, Windows server 2003 32-bit)
9E2A13BC30EF95CC7798D698E62BECD9

On 20 Nov, 20:30, rhaazy <rha...@gmail.com> wrote:


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Troy International  
View profile
 More options Nov 21 2008, 11:37 pm
From: "Troy International" <troy2....@gmail.com>
Date: Fri, 21 Nov 2008 18:07:08 +0530
Local: Fri, Nov 21 2008 11:37 pm
Subject: Re: [DotNetDevelopment] Re: Question about using MD5

hi

how shall i genertate a astring or value that should be encrypted and show
in url ie:some large

number like this..:9E2A13BC30EF95CC7798D698E62BECD9

pls give the code in VB.Net

On 11/21/08, CK <c...@cksiteoftreats.co.uk> wrote:


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
CK  
View profile
 More options Nov 22 2008, 12:04 am
From: CK <c...@cksiteoftreats.co.uk>
Date: Fri, 21 Nov 2008 05:04:57 -0800 (PST)
Local: Sat, Nov 22 2008 12:04 am
Subject: Re: Question about using MD5
Firstly, don't thread hijack.

Secondly, the code is there in my post (albeit in C#, but is easily
translatable).

On 21 Nov, 12:37, "Troy International" <troy2....@gmail.com> wrote:


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Stephen Russell  
View profile
 More options Nov 22 2008, 1:20 am
From: "Stephen Russell" <sruss...@lotmate.com>
Date: Fri, 21 Nov 2008 08:20:56 -0600
Local: Sat, Nov 22 2008 1:20 am
Subject: RE: [DotNetDevelopment] Re: Question about using MD5
Your code on my Vista laptop
9E2A13BC30EF95CC7798D698E62BECD9

VS2008, SP1

.........................
Stephen Russell -
Senior Visual Studio Developer, DBA

Memphis, TN
901.246-0159


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
ramakrishna manda  
View profile
 More options Nov 22 2008, 12:45 am
From: "ramakrishna manda" <mandaramakrishna...@gmail.com>
Date: Fri, 21 Nov 2008 19:15:07 +0530
Local: Sat, Nov 22 2008 12:45 am
Subject: Re: [DotNetDevelopment] Re: Question about using MD5

plz iam not a eng student dont send any dot net &information

On Fri, Nov 21, 2008 at 8:15 AM, Charles A. Lopez
<charlesalo...@gmail.com>wrote:


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Glenn  
View profile
 More options Nov 22 2008, 1:34 am
From: Glenn <ke4ktza...@gmail.com>
Date: Fri, 21 Nov 2008 09:34:48 -0500
Local: Sat, Nov 22 2008 1:34 am
Subject: Re: [DotNetDevelopment] Re: Question about using MD5

Then unsubscribe from this list.

...Glenn

On Fri, Nov 21, 2008 at 8:45 AM, ramakrishna manda <


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Glenn  
View profile
 More options Nov 22 2008, 1:36 am
From: Glenn <ke4ktza...@gmail.com>
Date: Fri, 21 Nov 2008 09:36:37 -0500
Local: Sat, Nov 22 2008 1:36 am
Subject: Re: [DotNetDevelopment] Re: Question about using MD5

Windows XP SP3 32-bit on Dell DUO Core system:
9E2A13BC30EF95CC7798D698E62BECD9.

...Glenn


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Cerebrus  
View profile
 More options Nov 22 2008, 1:42 am
From: Cerebrus <zorg...@sify.com>
Date: Fri, 21 Nov 2008 06:42:19 -0800 (PST)
Local: Sat, Nov 22 2008 1:42 am
Subject: Re: Question about using MD5
I wonder how we manage to subscribe such kind of idiots
"automatically".

On Nov 21, 7:34 pm, Glenn <ke4ktza...@gmail.com> wrote:


    Reply    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Glenn  
V