Code archives/Miscellaneous/UserAssist registry cypher

This code has been declared by its author to be Public Domain code.

Download source code

UserAssist registry cypher by _PJ_2010
Very simplified cypher example pertaning to the values of registry keys under "UserAssist" subkkeys in Windows
;"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\UserAssist\"

a$="";Type Content Here!
For f=1 To Len(a$)
	xval=Asc(Mid(Upper(a$),f,1))
	If (xval>31) Then sReturn$=sReturn$+(Chr$(xval+(((xval>64) * (xval)<78)*13) - (((xval>77) * (xval<91))*13)))
Next
Print sReturn$

WaitKey()
End

Comments

None.

Code Archives Forum