Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~493 People Reached
Favorite Forums
Favorite Tags
c++ x 4
Member Avatar for stevelance99

hi i am getting a floating point error while im trying to complile the rc4 encryption in c++...i was wondering if anyone could help me out...i have the code pasted as below #include <stdio.h> #include <iostream.h> #include <ctype.h> #include <string.h> unsigned char s[256]; unsigned int i, j; void swap(unsigned char …

Member Avatar for gusano79
0
191
Member Avatar for stevelance99

hey can anyone help me with the decrypt part...cant seem to get it to work.... #include <iostream> using namespace std; unsigned char s[256]; unsigned int i, j; void swap(unsigned char *s, unsigned int i, unsigned int j) { unsigned char temp = s[i]; s[i] = s[j]; s[j] = temp; } …

Member Avatar for WaltP
0
302