Deobfuscate() public static method

Deobfuscate a string.
public static Deobfuscate ( string value ) : string
value string The string to deobfuscate
return string
Esempio n. 1
0
 /// <summary>
 /// Returns the password as plain text
 /// </summary>
 /// <returns>plain text password</returns>
 public override string ToString()
 {
     return(this.password == null ? null : Crypto.Deobfuscate(this.password));
 }