Hyperlisk Posted May 4, 2010 Posted May 4, 2010 (edited) I'm gonna be honest. That's some of the worst source I've seen in awhile...autoKeyE/D() looks like a simple substitution cipher, which you could have made a lot easier with an array using the array key as the byte you want to replace and the value of array[key] as the new byte. Also known as an S-box.Your Caesar shift doesn't look like one I've ever seen either. If it was right, you'd be able to specify the shift amount, then you could implement rot13 with caesar(ch, 13);So yeah... You should learn good programming practices. Edited May 4, 2010 by Hyperlisk
JMC31337 Posted May 4, 2010 Author Posted May 4, 2010 I'm gonna be honest. That's some of the worst source I've seen in awhile...autoKeyE/D() looks like a simple substitution cipher, which you could have made a lot easier with an array using the array key as the byte you want to replace and the value of array[key] as the new byte. Also known as an S-box.Your Caesar shift doesn't look like one I've ever seen either. If it was right, you'd be able to specify the shift amount, then you could implement rot13 with caesar(ch, 13);So yeah... You should learn good programming practices.yea... an array would def would have been the way to go.. i took the easy way out... i'll check out the s box link and i'll work on it...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now