4 * @brief Implementation of hasher_t interface using the
10 * Copyright (C) 2005 Jan Hutter, Martin Willi
11 * Hochschule fuer Technik Rapperswil
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
20 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
27 #include <transforms/hashers/hasher.h>
30 typedef struct hasher_md5_t hasher_md5_t
;
33 * Object representing the md5 hasher
39 * generic hasher_t interface for this hasher
41 hasher_t hasher_interface
;
45 * Creates a new hasher_md5_t object
48 * - hasher_md5_t if successfully
49 * - NULL if out of ressources
51 hasher_md5_t
*hasher_md5_create();
53 #endif /*HASHER_md5_H_*/