2 * Copyright (C) 2011 Tobias Brunner
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
17 * @defgroup keymat_v1 keymat_v1
24 #include <sa/keymat.h>
26 typedef struct keymat_v1_t keymat_v1_t
;
29 * Derivation and management of sensitive keying material, IKEv1 variant.
34 * Implements keymat_t.
39 * Derive keys for the IKE_SA.
41 * These keys are not handed out, but are used by the associated signers,
42 * crypters and authentication functions.
44 * @param proposal selected algorithms
45 * @param dh diffie hellman key allocated by create_dh()
46 * @param dh_other public DH value from other peer
47 * @param nonce_i initiators nonce value
48 * @param nonce_r responders nonce value
49 * @param id IKE_SA identifier
50 * @param auth authentication method
51 * @param shared_key PSK in case of AUTH_CLASS_PSK, NULL otherwise
52 * @return TRUE on success
54 bool (*derive_ike_keys
)(keymat_v1_t
*this, proposal_t
*proposal
,
55 diffie_hellman_t
*dh
, chunk_t dh_other
,
56 chunk_t nonce_i
, chunk_t nonce_r
, ike_sa_id_t
*id
,
57 auth_class_t auth
, shared_key_t
*shared_key
);
62 * Create a keymat instance.
64 * @param initiator TRUE if we are the initiator
65 * @return keymat instance
67 keymat_v1_t
*keymat_v1_create(bool initiator
);
69 #endif /** KEYMAT_V1_H_ @}*/