2 * Copyright (C) 2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
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>.
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
18 #include "sha1_plugin.h"
21 #include "sha1_hasher.h"
23 typedef struct private_sha1_plugin_t private_sha1_plugin_t
;
26 * private data of sha1_plugin
28 struct private_sha1_plugin_t
{
37 * Implementation of sha1_plugin_t.destroy
39 static void destroy(private_sha1_plugin_t
*this)
41 lib
->crypto
->remove_hasher(lib
->crypto
,
42 (hasher_constructor_t
)sha1_hasher_create
);
43 lib
->crypto
->remove_prf(lib
->crypto
,
44 (prf_constructor_t
)sha1_keyed_prf_create
);
51 plugin_t
*plugin_create()
53 private_sha1_plugin_t
*this = malloc_thing(private_sha1_plugin_t
);
55 this->public.plugin
.destroy
= (void(*)(plugin_t
*))destroy
;
57 lib
->crypto
->add_hasher(lib
->crypto
, HASH_SHA1
,
58 (hasher_constructor_t
)sha1_hasher_create
);
59 lib
->crypto
->add_prf(lib
->crypto
, PRF_KEYED_SHA1
,
60 (prf_constructor_t
)sha1_keyed_prf_create
);
62 return &this->public.plugin
;