using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Security.Cryptography; namespace RomCheater.PluginFramework.Core { public class GuidGenerator { public GuidGenerator(string t) { MD5 md5Hasher = MD5.Create(); byte[] data = md5Hasher.ComputeHash(Encoding.Default.GetBytes(t)); Guid = new Guid(data); } public Guid Guid { get; private set; } } }