view src/lib-otp/otp-parse.h @ 9330:cf93e420fc57 HEAD

mbox-snarf: Keep the mailbox locked while snarfing to avoid duplicates.
author Timo Sirainen <tss@iki.fi>
date Mon, 17 Aug 2009 10:42:12 -0400
parents e4eb71ae8e96
children
line wrap: on
line source

#ifndef OTP_PARSE_H
#define OTP_PARSE_H

int otp_read_hex(const char *data, const char **endptr, unsigned char *hash);
int otp_read_words(const char *data, const char **endptr, unsigned char *hash);
int otp_read_new_params(const char *data, const char **endptr,
			struct otp_state *state);

int otp_parse_response(const char *data, unsigned char *hash, bool hex);
int otp_parse_init_response(const char *data, struct otp_state *new_state,
			    unsigned char *hash, bool hex, const char **error);

int otp_parse_dbentry(const char *text, struct otp_state *state);
const char *otp_print_dbentry(const struct otp_state *state);

#endif