#ifndef Libstegano_H #define Libstegano_H #include #include #include #include typedef unsigned char byte; byte *convBin(unsigned int size); int insert (byte *pix, unsigned int pix_size, byte *msg, unsigned int msg_size); byte *extract (byte *pix, unsigned int pix_size, unsigned int *msg_size); byte *convBin2(byte *msg , unsigned int size); #endif