Saturday, 6 December 2014

Encryption Decryption Text With Notepad

Encryption Decryption  Text With Notepad








------------------------------------------------------------------------------------------------------------
COPY AND PASTE BELOW CODE AND SAVE IN 
FBGadgets.vbs
-------------------------------------------------------------------------------------------------------------

set x = WScript.CreateObject("WScript.Shell")
mySecret = inputbox("encrypt text")
'Reverse the submitted text'
mySecret = StrReverse(mySecret)
'Open up an instance of Notepad to print the results after waiting for 1 second'
x.Run "%windir%\notepad"
wscript.sleep 1000
x.sendkeys encode(mySecret)'this function encodes the text by advancing each character 3 letters'
function encode(s)
For i = 1 To Len(s)
newtxt = Mid(s, i, 1)
newtxt = Chr(Asc(newtxt)+3)
coded = coded & newtxt
Next
encode = coded
End Function













0 comments:

Post a Comment

FB Gadgets | Template Designed by Fatakat PhotosCoolBThemes.com
Code by : paid web directory

https://www.google.co.uk/search?q=site%3Ablogspot.com+fbgadgets