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
16 #include "des_plugin.h"
19 #include "des_crypter.h"
21 typedef struct private_des_plugin_t private_des_plugin_t
;
24 * private data of des_plugin
26 struct private_des_plugin_t
{
34 METHOD(plugin_t
, get_name
, char*,
35 private_des_plugin_t
*this)
40 METHOD(plugin_t
, get_features
, int,
41 private_des_plugin_t
*this, plugin_feature_t
*features
[])
43 static plugin_feature_t f
[] = {
44 PLUGIN_REGISTER(CRYPTER
, des_crypter_create
),
45 PLUGIN_PROVIDE(CRYPTER
, ENCR_3DES
, 24),
46 PLUGIN_PROVIDE(CRYPTER
, ENCR_DES
, 8),
47 PLUGIN_PROVIDE(CRYPTER
, ENCR_DES_ECB
, 8),
53 METHOD(plugin_t
, destroy
, void,
54 private_des_plugin_t
*this)
62 plugin_t
*des_plugin_create()
64 private_des_plugin_t
*this;
69 .get_name
= _get_name
,
70 .get_features
= _get_features
,
76 return &this->public.plugin
;