import java.io.*;

interface Steganographer {
    public Object extract(EasyBufferedImage stego) throws IOException;
    public EasyBufferedImage embed(EasyBufferedImage cover, Object message) throws IOException;
}
