Can I encrypt a text from a input?
this code below works only with string, not with input. How can i modify it?
thanksCode:result = Crypto.Rot13("My Text");
Professional Software Development Tools
Can I encrypt a text from a input?
this code below works only with string, not with input. How can i modify it?
thanksCode:result = Crypto.Rot13("My Text");
Hi.
Is that what you're looking for?
Code:result = Crypto.Rot13(Input.GetText("Input1"));
exactly it works! thanks
But now i have another problem. Can I decode/encode a string (input) with Base64?
I can decode/encode files, but now strings. I have tried, but no success..
I hope you can help me.
Code:Crypto.Base64DecodeFromFile("C:\\MyFolder\\MyFile.txt", "C:\\MyFolder\\MyFile.zip");