Use these functions to make your blue gui key safe!
Function Encrypt(Pass$,String$)
Leni=Len(Pass$)
Leni2=Len(String$)
For x=1 to Leni2
Inc i,1
If i>Leni then i=1
Return$=Return$ + Chr$(Asc(Mid$(String$,x)) + Asc(Mid$(Pass$,i)))
Next x
Endfunction Return$
Function Decrypt(Pass$,String$)
Leni=Len(Pass$)
Leni2=Len(String$)
For x=1 to Leni2
Inc i,1
If i>Leni then i=1
Return$=Return$ + Chr$(Asc(Mid$(String$,x)) - Asc(Mid$(Pass$,i)))
Next x
Endfunction Return$
First encrypt ur keys like
Str$=Encrypt("MyPass","Key1")
Print STR$
Then write the encrypted string down..
Then decrypt that string in your program and use as key
The encrypted/decrypted string is all about what password you input!
Your signature has been erased by a mod because it was too big