Results 1 to 9 of 9

Thread: [RESOLVED] Whats MD5

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    May 2006
    Posts
    426

    Resolved [RESOLVED] Whats MD5

    Guys am new to this. Whats MD5?

  2. #2

    Thread Starter
    Hyperactive Member
    Join Date
    May 2006
    Posts
    426

    Re: Whats MD5

    Is it simply a class!!??

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    May 2006
    Posts
    426

    Re: Whats MD5

    Ok. Message Digest is what i see in my MSDN

  4. #4
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,222

    Re: Whats MD5

    MD5 is a algorithm to create securely encrypted strings from existing strings. The idea is that the encrypted string cannot be used to recreate the original and small changes in the original will have unpredictable results on the encrypted value produced. This allows you to do things like hash a password and then store it in plain view without compromising security. The hashed value cannot be used to determine the original password except through brute force so there is no issue. When the user provides their password to log in you hash it using the same algorithm and compare the result with the stored value. If they matched then the user is authenticated. Us eof the MD5 algorithm is supported via several different classes in the System.Security.Cryptography namespace in the .NET Framework.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  5. #5

    Thread Starter
    Hyperactive Member
    Join Date
    May 2006
    Posts
    426

    Re: Whats MD5

    Thanks i understand that bit....but what does MD5 stand for??

  6. #6
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,222

    Re: Whats MD5

    Try here.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  7. #7

    Thread Starter
    Hyperactive Member
    Join Date
    May 2006
    Posts
    426

    Re: Whats MD5

    MD5 (Message-Digest algorithm 5)

  8. #8
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,222

    Re: Whats MD5

    Quote Originally Posted by maps
    MD5 (Message-Digest algorithm 5)
    You don't say. Wow, that Google thingy's really useful. I might start using it myself.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  9. #9

    Thread Starter
    Hyperactive Member
    Join Date
    May 2006
    Posts
    426

    Re: Whats MD5

    JMC!! before you redirected me there, i was already there. But hey wow. Thanks!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width