VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Hides string information in WAV or BMP files using steganography. Uses 2 bits out of every 16 to hi

Kevin O'Classen  ()   Encryption   Visual Basic 4.0 (32-bit)   Unknown Difficulty   Wed 23rd June 2004   Mon 8th February 2021

Hides string information in WAV or BMP files using steganography. Uses 2 bits out of every 16 to hide information "in plain sight".

API Declarations



' Steganography is the process of "hiding information in plain sight".
' These functions will hide text information in either WAV or BMP files,
' while leaving them still able to be played or displayed normally, with little
' to no loss of quality. Works by altering the 2 least significant bits of each
' sample (2 bits out of 16). A one-byte flag (Chr(255)) is used to signify
' the end of the hidden data. The data that is hidden is not encrypted in any
' way... This would be done before calling these routines.

'--- There is little to no error checking, and no provisions to avoid
' overwriting a file that has been modified.

' The Embed function returns an integer value showing the results of trying
' to embed the data. The Pull function returns a string containing any data
' retreived from the file. In both cases, the filename supplied must be a full
' file name, rather than a relative path.

' I wrote this code using VB6, but the process is so basic I expect
' it should work with all versions. No API or process calls, no components.

' If you find this code useful, have questions, or if you've written a better
' routine, don't hesitate to drop me a line at <[email protected]>


Rate Hides string information in WAV or BMP files using steganography. Uses 2 bits out of every 16 to hi (2(2 Vote))
Hides string information in WAV or BMP files using steganography. Uses 2 bits out of every 16 to hi.bas

Hides string information in WAV or BMP files using steganography. Uses 2 bits out of every 16 to hi Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters