Click here to Skip to main content
15,929,430 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: minimize to system tray Pin
Christian Graus12-Feb-07 18:52
protectorChristian Graus12-Feb-07 18:52 
GeneralRe: minimize to system tray Pin
convivial.developer13-Feb-07 5:05
convivial.developer13-Feb-07 5:05 
AnswerRe: minimize to system tray Pin
Vichitram12-Feb-07 18:10
Vichitram12-Feb-07 18:10 
QuestionLog Viewer [C++ .net VS2005] Pin
abbd12-Feb-07 6:55
abbd12-Feb-07 6:55 
QuestionCryptography and steganography Pin
Software_Specialist12-Feb-07 4:32
Software_Specialist12-Feb-07 4:32 
AnswerRe: Cryptography and steganography Pin
led mike12-Feb-07 4:42
led mike12-Feb-07 4:42 
GeneralRe: Cryptography and steganography Pin
User 58385212-Feb-07 11:27
User 58385212-Feb-07 11:27 
AnswerRe: Cryptography and steganography Pin
Saravanan Somasundaram12-Feb-07 20:07
Saravanan Somasundaram12-Feb-07 20:07 
Hi,

Regarding cryptography, it is a very big topic.
Regarding steganography, the concept is pretty simple to explain. But implementation can take that to any level from simple to complex.

The concept behind steganography is, we hide the data within another multimedia content, which doesnt show off the variation with this hidden message.

To make it clear, consider hiding a simple test message "Hello World" inside a 24-Bit Bitmap Image.

A bitmap image contains, 3 portions(file header, bitmap header and the actual 24bit bitmap content). The 3rd part, the bitmap content, contains 3 bytes for each pixel in a image. Let us say we have a picture of size 5 X 5. This will have 25 pixels and hence 75(25 X 3) bytes.

The change in the Bit 1(Least Significant Bit), wont create much variation to the bitmap image. So we take this as the slot to hide our data. We split our data to hide into bits and store each bit in the LSB of the Bitmap data.

I have implemented a simple version of hiding the data using this concept. And also the data retrieval part in C++. It was a very interesting stuff to implement.

Thanks.


With Regards,
Saravanan Somasundaram

GeneralRe: Cryptography and steganography Pin
Software_Specialist13-Feb-07 1:22
Software_Specialist13-Feb-07 1:22 
GeneralRe: Cryptography and steganography Pin
Saravanan Somasundaram13-Feb-07 2:05
Saravanan Somasundaram13-Feb-07 2:05 
GeneralRe: Cryptography and steganography Pin
Software_Specialist13-Feb-07 2:59
Software_Specialist13-Feb-07 2:59 
AnswerRe: Cryptography and steganography Pin
Saravanan Somasundaram13-Feb-07 5:39
Saravanan Somasundaram13-Feb-07 5:39 
GeneralRe: Cryptography and steganography Pin
Software_Specialist13-Feb-07 9:36
Software_Specialist13-Feb-07 9:36 
GeneralRe: Cryptography and steganography Pin
Saravanan Somasundaram13-Feb-07 17:41
Saravanan Somasundaram13-Feb-07 17:41 
GeneralRe: Cryptography and steganography Pin
Andres Giachini14-Feb-07 16:45
Andres Giachini14-Feb-07 16:45 
QuestionGet Handle for every new Outlook message Pin
Ganesh N. Paul11-Feb-07 23:21
Ganesh N. Paul11-Feb-07 23:21 
AnswerRe: Get Handle for every new Outlook message Pin
Sahir Shah16-Feb-07 3:46
Sahir Shah16-Feb-07 3:46 
Questionconsole application TCP client in C++ Pin
wizard 20211-Feb-07 15:12
wizard 20211-Feb-07 15:12 
AnswerRe: console application TCP client in C++ Pin
User 58385211-Feb-07 15:48
User 58385211-Feb-07 15:48 
GeneralRe: console application TCP client in C++ Pin
wizard 20211-Feb-07 16:31
wizard 20211-Feb-07 16:31 
GeneralRe: console application TCP client in C++ Pin
User 58385211-Feb-07 16:38
User 58385211-Feb-07 16:38 
GeneralRe: console application TCP client in C++ Pin
wizard 20211-Feb-07 16:47
wizard 20211-Feb-07 16:47 
GeneralRe: console application TCP client in C++ Pin
Mark Salsbery12-Feb-07 7:03
Mark Salsbery12-Feb-07 7:03 
JokeRe: console application TCP client in C++ Pin
wizard 20212-Feb-07 12:43
wizard 20212-Feb-07 12:43 
GeneralRe: console application TCP client in C++ Pin
Mark Salsbery12-Feb-07 13:00
Mark Salsbery12-Feb-07 13:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.