C # MD5 encryption algorithm instance

Source: Internet
Author: User

There are already a lot of MD5 encryption algorithms on the Internet, but I have found a few algorithms, which are not the same as me. So write them down for your reference only.
Note that you should write it under app_code under the Web. If it is written in the class library, there is no corresponding namespace. Okay, let's talk a little less. See the Code:

Using system. Security. cryptography;

/// <Summary>
/// MD5 Encryption
/// </Summary>
Public class MD5
{
Public MD5 ()
{
//
// Todo: add the constructor logic here
//
}

/// <Summary>
/// MD5 encryption function
/// </Summary>
/// <Param name = "str"> </param>
/// <Param name = "code"> 16or32 </param>
/// <Returns> </returns>
Public static string getmd5 (string STR, int code)
{

If (code = 16) // 16-bit encryption
{
Return System. Web. Security. formsauthentication. hashpasswordforstoringinconfigfile (STR, "MD5"). tolower (). substring (8, 16 );
}

Else if (code = 32) // 32-bit encryption
{
Return System. Web. Security. formsauthentication. hashpasswordforstoringinconfigfile (STR, "MD5 ");
}
Return "0 ";
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.