#ifndef IPT_VERIFY_H
#define IPT_VERIFY_H

#include "ipt_SIGN.h"

enum sps_algorithms {STUPID, SHA, MD5};

struct ipt_verify_info {
	char key[256];
	char secret[IPT_SIGN_MAX_SECRET_LENGTH+1];
	enum sps_algorithms algorithm;
	char invert;
};
#endif /* IPT_VERIFY_H */

