예제 #1
0
        public string GetKey()
        {
            string input = CreateMD5(Workstation.GenerateWorkstationId());

            for (int i = 0; i < 0x3e8; i++)
            {
                input = CreateMD5(input);
            }
            return(input);
        }
예제 #2
0
        public string GetKey()
        {
            string md5 = CreateMD5(Workstation.GenerateWorkstationId());

            for (int index = 0; index < 1000; ++index)
            {
                md5 = CreateMD5(md5);
            }
            return(md5);
        }
예제 #3
0
 private void Activate_Load(object sender, EventArgs e)
 {
     this.label1.Text = this.label1.Text + CreateMD5(Workstation.GenerateWorkstationId());
 }