Ejemplo n.º 1
0
 public string getRequestCode(string version)
 {
     return StringCipher.Encrypt(string.Format("{0}_TOKENARG_{1}_TOKENARG_{2}_TOKENARG_{3}", name, mac, procID, version), version);
 }
Ejemplo n.º 2
0
 public static string readRequestCode(string requestCode, string version)
 {
     return StringCipher.Decrypt(requestCode, version);
 }