]> git.ipfire.org Git - thirdparty/strongswan.git/blame - src/libstrongswan/plugins/md4/md4_hasher.h
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / libstrongswan / plugins / md4 / md4_hasher.h
CommitLineData
1e0d1ae2
AS
1/*
2 * Copyright (C) 2008 Martin Willi
3 * Copyright (C) 2005 Jan Hutter
1e0d1ae2
AS
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * for more details.
14 */
15
16/**
17 * @defgroup md4_hasher md4_hasher
18 * @{ @ingroup md4_p
19 */
20
21#ifndef MD4_HASHER_H_
22#define MD4_HASHER_H_
23
24typedef struct md4_hasher_t md4_hasher_t;
25
26#include <crypto/hashers/hasher.h>
27
28/**
29 * Implementation of hasher_t interface using the MD4 algorithm.
30 */
31struct md4_hasher_t {
7daf5226 32
1e0d1ae2
AS
33 /**
34 * Generic hasher_t interface for this hasher.
35 */
36 hasher_t hasher_interface;
37};
38
39/**
40 * Creates a new md4_hasher_t.
7daf5226 41 *
1e0d1ae2
AS
42 * @param algo hash algorithm, must be HASH_MD4
43 * @return md4_hasher_t object, NULL if not supported
44 */
45md4_hasher_t *md4_hasher_create(hash_algorithm_t algo);
46
1490ff4d 47#endif /** MD4_HASHER_H_ @}*/