|
-
Oct 17th, 2010, 05:09 PM
#1
Thread Starter
Hyperactive Member
where to store the strings in main app
Hi guys,
I need your help. I want to create the matched strings in vb.net and set them as private, so no one could read them when using ollydby.
Here's the code:
Code:
Dim a As string = "ˆ"
Dim b As string = "%"
Dim c As string = "ÿ"
Dim d As string = "o"
if a & b & c & d then
'find the matched strings and set them together...'
end if
I want to know how to set the matched strings by finding them in main app, then get the matched strings and make the words join in together. For e.g: the strings of "ˆ" stands for h, "%" stands for e, "ÿ" stands for l and "o". So the words for altogether would be "hello". I also curious where is the best place to store the matched strings of "hello" somewhere in the main app without anyone could tracking them??
Any info would be much appreciate.
Thanks in advance.
PillaKilla
-
Oct 17th, 2010, 05:24 PM
#2
Re: where to store the strings in main app
you could use encryption or a binary file that holds the codes for each letter of the alphabet
- Coding Examples:
- Features:
- Online Games:
- Compiled Games:
-
Oct 17th, 2010, 05:31 PM
#3
Thread Starter
Hyperactive Member
Re: where to store the strings in main app
Thanks for your help, so where should I store the encrypted key in the main app and is it safe to store the encrypted strings in app.config or they can still be decrypt?
Thanks,
PillKilla
Last edited by PillKilla; Oct 17th, 2010 at 05:34 PM.
-
Oct 17th, 2010, 05:35 PM
#4
Re: where to store the strings in main app
i've never used encryption. search the forum. it's been asked many times before...
- Coding Examples:
- Features:
- Online Games:
- Compiled Games:
-
Oct 17th, 2010, 07:39 PM
#5
Thread Starter
Hyperactive Member
Re: where to store the strings in main app
Oh ok, I have tried to search on the forum but couldn't find one. Please could post the link as it would help to speed it up. I am looking for store public key in main app.
Thanks,
Pillkilla
-
Oct 18th, 2010, 07:53 AM
#6
Re: where to store the strings in main app
- Coding Examples:
- Features:
- Online Games:
- Compiled Games:
-
Oct 18th, 2010, 11:11 AM
#7
Thread Starter
Hyperactive Member
Re: where to store the strings in main app
Sorry - no matches. Please try some different terms.
-
Oct 18th, 2010, 09:36 PM
#8
Thread Starter
Hyperactive Member
Re: where to store the strings in main app
can you send me the correct full link please??
-
Oct 18th, 2010, 10:45 PM
#9
Re: where to store the strings in main app
Look at the link in my signature titled "Strong Encryption Class".
-
Oct 19th, 2010, 09:35 AM
#10
Thread Starter
Hyperactive Member
Re: where to store the strings in main app
No, I am asked the one where to store the private key secure in the main app??
-
Oct 19th, 2010, 10:09 AM
#11
Re: where to store the strings in main app
Depends on how secure you want it. There is no totally secure way to store a static symmetrical key. They can all be broken. You could store it encrypted, but then you'd need to store the key that encrypted that... You can store it broken into pieces or symbolons, but the program has to re-arrange them together at some point and that's when it can be obtained.
The only really secure way to do it is have the user enter the key or a portion of the key themselves; in the form of a password.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|