Click here to Skip to main content
15,902,741 members

Comments by rudy-peto (Top 27 by date)

rudy-peto 7-Sep-17 5:34am View    
All I need is just a concept.
Code is just a simply iteration through 2 dimensional array.
But the checker is the problem.
rudy-peto 25-Mar-17 11:30am View    
Sorry for reply lately. Yep, I understand that encryption keeps thing secret. But at least, base on what the other (expert) experience, do they know the method that this encryption used. At least, I saw there is something odd in this encryption. But I just don't know how to named this encryption.
rudy-peto 19-Jun-15 1:48am View    
Thanks for the references. Yep, I got a bit confuse about array / pointer, how to pass a value or an address between them..huff
rudy-peto 19-Jun-15 0:09am View    
But anyway, I store each hex into buffer.. But how do I store it to array of pointer, so it looks like:

buffer[0] = 0x55
buffer[1] = 0x4E
buffer[2] = 0x50
rudy-peto 18-Jun-15 23:41pm View    
Upss.. sorry, My mistake.. I should not print kar[i], It should be looks like this.

sprintf(buffer, "%02x", buff[i]);
cout << buffer << endl;

It works! Thanks..!