/* Copyright (C) 2000 artofcode LLC. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA, 02111-1307. */ /*$Id: smd5.h,v 1.2.6.1.2.1 2003/01/17 00:49:05 giles Exp $ */ /* Definitions for MD5Encode filter */ /* Requires scommon.h; strimpl.h if any templates are referenced */ #ifndef smd5_INCLUDED # define smd5_INCLUDED #include "md5.h" /* * The MD5Encode filter accepts an arbitrary amount of input data, and then, * when closed, emits the 16-byte MD5 digest. */ typedef struct stream_MD5E_state_s { stream_state_common; md5_state_t md5; } stream_MD5E_state; #define private_st_MD5E_state() /* in smd5.c */\ gs_private_st_simple(st_MD5E_state, stream_MD5E_state,\ "MD5Encode state") extern const stream_template s_MD5E_template; #endif /* smd5_INCLUDED */