2 * Copyright (C) 2010 Tobias Brunner
3 * Copyright (C) 2005-2007 Martin Willi
4 * Copyright (C) 2005 Jan Hutter
5 * Hochschule fuer Technik Rapperswil
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * @defgroup diffie_hellman diffie_hellman
23 #ifndef DIFFIE_HELLMAN_H_
24 #define DIFFIE_HELLMAN_H_
26 typedef enum diffie_hellman_group_t diffie_hellman_group_t
;
27 typedef struct diffie_hellman_t diffie_hellman_t
;
28 typedef struct diffie_hellman_params_t diffie_hellman_params_t
;
33 * Diffie-Hellman group.
35 * The modulus (or group) to use for a Diffie-Hellman calculation.
36 * See IKEv2 RFC 3.3.2 and RFC 3526.
38 * ECP groups are defined in RFC 4753 and RFC 5114.
40 enum diffie_hellman_group_t
{
58 /** insecure NULL diffie hellman group for testing, in PRIVATE USE */
60 /** MODP group with custon generator, prime */
65 * enum name for diffie_hellman_group_t.
67 extern enum_name_t
*diffie_hellman_group_names
;
70 * Implementation of the Diffie-Hellman algorithm, as in RFC2631.
72 struct diffie_hellman_t
{
75 * Returns the shared secret of this diffie hellman exchange.
77 * Space for returned secret is allocated and must be
78 * freed by the caller.
80 * @param secret shared secret will be written into this chunk
81 * @return SUCCESS, FAILED if not both DH values are set
83 status_t (*get_shared_secret
) (diffie_hellman_t
*this, chunk_t
*secret
);
86 * Sets the public value of partner.
88 * Chunk gets cloned and can be destroyed afterwards.
90 * @param value public value of partner
92 void (*set_other_public_value
) (diffie_hellman_t
*this, chunk_t value
);
95 * Gets the own public value to transmit.
97 * Space for returned chunk is allocated and must be freed by the caller.
99 * @param value public value of caller is stored at this location
101 void (*get_my_public_value
) (diffie_hellman_t
*this, chunk_t
*value
);
104 * Get the DH group used.
106 * @return DH group set in construction
108 diffie_hellman_group_t (*get_dh_group
) (diffie_hellman_t
*this);
111 * Destroys an diffie_hellman_t object.
113 void (*destroy
) (diffie_hellman_t
*this);
117 * Parameters for a specific diffie hellman group.
119 struct diffie_hellman_params_t
{
122 * The prime of the group
127 * Generator of the group
129 const chunk_t generator
;
132 * Exponent length to use
137 * Prime order subgroup; for MODP Groups 22-24
139 const chunk_t subgroup
;
143 * Get the parameters associated with the specified diffie hellman group.
145 * @param group DH group
146 * @return The parameters or NULL, if the group is not supported
148 diffie_hellman_params_t
*diffie_hellman_get_params(diffie_hellman_group_t group
);
151 * Check if a given DH group is an ECDH group
153 * @param group group to check
154 * @return TUE if group is an ECP group
156 bool diffie_hellman_group_is_ec(diffie_hellman_group_t group
);
158 #endif /** DIFFIE_HELLMAN_H_ @}*/