As per MSDN
Create MD5:
public static string CreateMD5(string input) { // Use input string to calculate MD5 hash using (System.Security.Cryptography.MD5 md5 = System.Security.Cryptography.MD5.Create()) { byte[] inputBytes = System.Text.Encoding.ASCII.GetBytes(input); byte[] hashBytes = md5.ComputeHash(inputBytes); // Convert the byte array to hexadecimal string StringBuilder sb = new StringBuilder(); for (int i = 0; i < hashBytes.Length; i++) { sb.Append(hashBytes[i].ToString("X2")); } return sb.ToString(); } }
Related Posts:
- How do I generate a random int number?
- An existing connection was forcibly closed by the remote host
- What is a PDB file?
- Unexplained crashes related to ntdll.dll
- I am getting Failed to load resource: net::ERR_BLOCKED_BY_CLIENT with Google chrome
- What is parsing?
- How to fix “HTTP Error 400. The size of the request headers is too long” error from azure cloud services?
- Could not load file or assembly or one of its dependencies
- Adding values to a C# array
- LINQ’s Distinct() on a particular property
- Priority queue in .Net
- What is the difference between int, Int16, Int32 and Int64?
- Adding values to a C# array
- How can I add ” character to a multi line string declaration in C#?
- Input string was not in a correct format
- The request was aborted: Could not create SSL/TLS secure channel
- Unable to connect to web server ‘IIS Express’
- Twilio TwilioRestClient does not contain a definition for SendSmsMessage
- How to convert byte array to string
- ASP.NET Core Dependency Injection error: Unable to resolve service for type while attempting to activate
- System.web.mvc missing
- Nullable object must have a value?
- Sequence contains no elements?
- Compiler Error Message: The compiler failed with error code -2146232576
- Validation failed for one or more entities. See ‘EntityValidationErrors’ property for more details
- Best way to generate a random float in C#
- Check if list is empty in C#
- What is clr.dll on .Net framework and what does it do?
- How can I secure passwords stored inside web.config?
- Visual Studio says “Method must have a return type”
- How to Use TextureBrush for painting an Image
- How to Use TextureBrush for painting an Image
- C# compiler error: “not all code paths return a value”
- Can’t use System.Windows.Forms
- How do I read and parse an XML file in C#?
- How to use the “Using” statement in ASP.net razor webpages?
- How to fix “namespace x already contains a definition for x” error? Happened after converting to VS2010
- How do I create a Shared Code project (.shproj)
- OnCollisionEnter2D not being executed?
- The calling thread cannot access this object because a different thread owns it
- Convert JSON String To C# Object
- How can I fix Visual Studio 2015 exception Microsoft.vshup.server.httphostx64.exe has stopped working when run project
- IEnumerable vs List – What to Use? How do they work?
- How to convert code from C# to PHP
- Merge two (or more) lists into one, in C# .NET
- Index was out of range. Must be non-negative and less than the size of the collection parameter name:index
- Is dependency injection useful in C++
- Parse Json string in C#
- System.BadImageFormatException: Could not load file or assembly
- Could not load file or assembly ‘Microsoft.Web.Infrastructure,
- Where to place native DLL to use Pocket PC emulator?
- What is the purpose of the vshost.exe file?
- System.ComponentModel.Win32Exception: Access is denied Error
- Excel “External table is not in the expected format.”
- There is already an open DataReader associated with this Command which must be closed first
- MSSQL Error ‘The underlying provider failed on Open’
- An object reference is required to access a non-static member
- Task vs Thread differences
- There is no ViewData item of type ‘IEnumerable
‘ that has the key country - C# – Rounding Down to Nearest Integer
- How to update the value stored in Dictionary in C#?
- How to write a comment in a Razor view?
- Finalize vs Dispose
- How to download a file from a URL in C#?
- How to pass data (and references) between scenes in Unity
- Constructor of an abstract class in C#
- Receiving access denied error from Visual Studio when trying to change target framework
- How to force garbage collector to run?
- Page vs Window in WPF?
- CS1617: Invalid option ‘6’ for /langversion; must be ISO-1, ISO-2, 3, 4, 5 or Default
- Catch multiple exceptions at once?
- How to delete a file after checking whether it exists
- c# Show Windows Form
- Equivalent of console.log in C#
- How to get the URL of the current page in C#
- C# Debug – cannot start debugging because the debug target is missing
- ‘namespace’ but is used like a ‘type’
- How to properly make a http web GET request
- Strip double quotes from a string in .NET
- Convert double to float by cast or Convert.ToSingle()?
- Simulating Key Press C#
- Call a stored procedure with parameter in c#
- No overload for method ” takes 1 argument
- Type Checking: typeof, GetType, or is?
- Best way to “push” into C# array
- C# Macro definitions in Preprocessor
- Is it possible to install a C# compiler without Visual Studio?
- Playing a MP3 file in a WinForm application
- The server tag is not well formed error
- How to solve Operator ‘!=’ cannot be applied to operands of type ‘T’ and ‘T’
- Best way to randomize an array with .NET
- Encrypt and decrypt a string in C#?
- Key Value Pair List
- Using .Select and .Where in a single LINQ statement
- How to resize an Image C#
- Unrecognized escape sequence for path string containing backslashes
- C# Dictionary get item by index
- the source file is different from when the module was built
- A field initializer cannot reference the nonstatic field, method, or property
- How to set session timeout in web.config