Security
stegan.txt
Associated article: Steganography for DOS Programmers
Tags: Database Security
Published source code accompanying the article by Alan Johnson in which he presents techniques implementing steganography, a form of encryption which allows you to hide information.
_Steganography for DOS Programmers_
by Alan Johnson
Listing One
/* llist.c */
#include "stdio.h"
main(argc,argv) /* ....this program lists a file in binary mode; */
/* ALL characters are shown. */
int argc;
char *argv[];
{
int byte;
long count=0l;
...


