view src/lib-otp/otp.h @ 12636:fa4b84059ae2

IMAP LIST: Never return subscribed children state if RECURSIVEMATCH isn't specified. Not even when backends give it automatically.
author Timo Sirainen <tss@iki.fi>
date Wed, 02 Feb 2011 05:31:46 +0200
parents e4eb71ae8e96
children
line wrap: on
line source

#ifndef OTP_H
#define OTP_H

#define OTP_MAX_SEED_LEN	16
#define OTP_MAX_WORD_LEN	4
#define OTP_WORDS_NUMBER	6

#define OTP_HASH_SIZE		8

struct otp_state {
	unsigned int algo;
	int seq;
	unsigned char hash[OTP_HASH_SIZE];
	char seed[OTP_MAX_SEED_LEN + 1];
};

#include "otp-hash.h"
#include "otp-dictionary.h"
#include "otp-parity.h"
#include "otp-parse.h"

#endif