File size: 301 Bytes
06242ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#ifndef STC_INTERFACE_H
#define STC_INTERFACE_H
extern "C" {
int stc_hide(uint cover_length, int* cover, float* costs,
uint message_length, u8* message, int* stego);
int stc_unhide(uint stego_length, int* stego,
uint message_length, u8* message);
}
#endif
|