
| Current Path : /include/dovecot/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //include/dovecot/mbox-md5.h |
#ifndef MBOX_MD5_H
#define MBOX_MD5_H
struct message_header_line;
struct mbox_md5_vfuncs {
struct mbox_md5_context *(*init)(void);
void (*more)(struct mbox_md5_context *ctx,
struct message_header_line *hdr);
void (*finish)(struct mbox_md5_context *ctx,
unsigned char result[STATIC_ARRAY 16]);
};
extern struct mbox_md5_vfuncs mbox_md5_apop3d;
extern struct mbox_md5_vfuncs mbox_md5_all;
#endif