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 "gmp_plugin.h"
21 #include "gmp_diffie_hellman.h"
22 #include "gmp_rsa_private_key.h"
23 #include "gmp_rsa_public_key.h"
25 typedef struct private_gmp_plugin_t private_gmp_plugin_t
;
28 * private data of gmp_plugin
30 struct private_gmp_plugin_t
{
39 * Implementation of gmp_plugin_t.gmptroy
41 static void destroy(private_gmp_plugin_t
*this)
43 lib
->crypto
->remove_dh(lib
->crypto
,
44 (dh_constructor_t
)gmp_diffie_hellman_create
);
45 lib
->creds
->remove_builder(lib
->creds
,
46 (builder_constructor_t
)gmp_rsa_private_key_builder
);
47 lib
->creds
->remove_builder(lib
->creds
,
48 (builder_constructor_t
)gmp_rsa_public_key_builder
);
55 plugin_t
*plugin_create()
57 private_gmp_plugin_t
*this = malloc_thing(private_gmp_plugin_t
);
59 this->public.plugin
.destroy
= (void(*)(plugin_t
*))destroy
;
61 lib
->crypto
->add_dh(lib
->crypto
, MODP_768_BIT
,
62 (dh_constructor_t
)gmp_diffie_hellman_create
);
63 lib
->crypto
->add_dh(lib
->crypto
, MODP_1024_BIT
,
64 (dh_constructor_t
)gmp_diffie_hellman_create
);
65 lib
->crypto
->add_dh(lib
->crypto
, MODP_1536_BIT
,
66 (dh_constructor_t
)gmp_diffie_hellman_create
);
67 lib
->crypto
->add_dh(lib
->crypto
, MODP_2048_BIT
,
68 (dh_constructor_t
)gmp_diffie_hellman_create
);
69 lib
->crypto
->add_dh(lib
->crypto
, MODP_3072_BIT
,
70 (dh_constructor_t
)gmp_diffie_hellman_create
);
71 lib
->crypto
->add_dh(lib
->crypto
, MODP_4096_BIT
,
72 (dh_constructor_t
)gmp_diffie_hellman_create
);
73 lib
->crypto
->add_dh(lib
->crypto
, MODP_6144_BIT
,
74 (dh_constructor_t
)gmp_diffie_hellman_create
);
75 lib
->crypto
->add_dh(lib
->crypto
, MODP_8192_BIT
,
76 (dh_constructor_t
)gmp_diffie_hellman_create
);
78 lib
->creds
->add_builder(lib
->creds
, CRED_PRIVATE_KEY
, KEY_RSA
,
79 (builder_constructor_t
)gmp_rsa_private_key_builder
);
80 lib
->creds
->add_builder(lib
->creds
, CRED_PUBLIC_KEY
, KEY_RSA
,
81 (builder_constructor_t
)gmp_rsa_public_key_builder
);
83 return &this->public.plugin
;