DecryptText - method of the Pm object
Description:
The text decryption that has been encrypted by the
Pm.EncryptText method.
Syntax:
String DecryptText(String sText, String sSeed)
Parameters:
sText | (String) Text that has to be decrypted |
sSeed | (String) Seed used for text decryption |
---|
Note:
The knowledge of the seed used on the encryption is required for the decryption.
This method is also functional in
Web panels.
Example1:
Reading and the decryption of the password from "ini" file:
JavaScriptVBScriptSelect and copy to clipboard
var sTxtCode = Pm.IniFileRead("#cfg:data.ini", "Passwords", "Password1", "");
var sTextDecode = Pm.DecryptText(sTxtCode, "bflmpsvz");
Dim sTxtCode, sTextDecode
sTxtCode = Pm.IniFileRead("#cfg:data.ini", "Passwords", "Password1", "")
sTextDecode = Pm.DecryptText(sTxtCode, "bflmpsvz")
Example2:
String encryption and decryption according to specific seed.
JavaScriptVBScriptSelect and copy to clipboard
var sTxt = "Hello";
var sTextDecrypt;
var sTextEncrypt = Pm.EncryptText(sTxt, "bflmpsvz");
Pm.Debug("TextEncrypt=" + sTextEncrypt);
sTextDecrypt = Pm.DecryptText(sTextEncrypt, "bflmpsvz");
Pm.Debug("TextDecrypt=" + sTextDecrypt);
Dim sTxt, sTextDecrypt, sTextEncrypt
sTxt = "Hello"
sTextEncrypt = Pm.EncryptText(sTxt, "bflmpsvz")
Pm.Debug "TextEncrypt=" & sTextEncrypt
sTextDecrypt = Pm.DecryptText(sTextEncrypt, "bflmpsvz")
Pm.Debug "TextDecrypt=" & sTextDecrypt