Encryption in C++ or BASIC
Hey, I'm new to programming, and I know a little about basic, and a minimal amount about C++. I was wondering if anyone could explain the steps needed to be taken for writting an encryption program. If someone would like to talk to me via email or aim, I'd be really grateful, just because I don't think many people will post here... But thanks for any posts
-0ri0n
Re: Encryption in C++ or BASIC
Quote:
Originally posted here by 0ri0n
just because I don't think many people will post here... But thanks for any posts
-0ri0n
Your kidding me right? This has to be like one of the most active bullitin boards I've seen on the WWW.
Ok encription.... ehhh I haven't fooled with that much but I know that in VB you can use Xor to perform an operation on two numbers, thus returning a value that can be used to encript / decrypt some text & (ect).
(Example) Lets do simple math. 69 Xor 50 returns to the value of 119. Chr$(69) can return it into ascii. Then you can use Use Asc("69") then it can be used to turn it back into (ascii basicly known as "letters & stuff").
Ok so my example is very short and kinda lame but its hard to code things off the top of your head :p I hope it'll help though.