Answers for "c# generate guid from hash"

C#
0

c# generate guid from hash

using System.Security.Cryptography;

        private static Guid GuidFromString(string input)
        {
            using (MD5 md5 = MD5.Create())
            {
                byte[] hash = md5.ComputeHash(Encoding.Default.GetBytes(input));
                return new Guid(hash);
            }
        }
Posted by: Guest on July-10-2020

C# Answers by Framework

Browse Popular Code Answers by Language