Help for this page

Select Code to Download


  1. or download this
    // convert key to a byte array
                    int len = key.Text.Length / 2;
    ...
                        k[i] = Convert.ToByte(key.Text.Substring(i * 2, 2)
    +, 16);
                    }
                    summaryText += "key=" + key.Text.Trim() + "\r\n\r\n";
    
  2. or download this
    $key="AJDAHSDJ213718327DSFSDJFHSDKFJ87348171837"; #example
    $len=length($key) / 2;
    ...
         for($i=0;$i<$len;$i++)      {
            $k[$i]= ?
          }