Create your own encryption system
It's an enjoyable topic. You may not want to create your passwords in usual, typical forms. I'll describe how to create your own basic encryption algorithm to raise your security level. Open up a new note page. Write these commands: set x = WScript.CreateObject("WScript.Shell") mySecret = inputbox("Write your password into the blank below") mySecret = StrReverse(mySecret) x.Run "%windir%\\\\notepad" wscript.sleep 1000 x.sendkeys encode(mySecret) 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 In this code ''newtxt = Chr(Asc(newtxt)+3)'' , the phrase of +3 implies that each el...