QUOTE(j_wolfe @ 9 Jan, 2009 - 01:36 PM)

That is an interesting concept, Hyper, though I'm not entirely sure how that would work (programming, as you can probably tell, is not yet something I'm good at)
It would work something like this (
psuedo code):
User enters string of characters into a C-style string:
char UserInput[50]After the user is done entering their string, you do the following:
for (int x = 0; x < 50; x++) { UserInput[x] ^= 50; }That would cause each letter to be XOR'd with the value of 50. Here's a Wikipedia link to what
XOR is:
I lied, it isn't WikipediaWelcome! I hope you understand you can simply
output the
encrypted string to a
file once complete.
If this post was helpful, remember to click the green button that says:
This Post Was Helpful! to save a kid in China (somehow...)!
This post has been edited by Hyper: 9 Jan, 2009 - 11:08 PM