]> git.ipfire.org Git - thirdparty/strongswan.git/blame - src/libcharon/sa/keymat.h
proposal: Move proposal_t from libcharon to libstrongswan
[thirdparty/strongswan.git] / src / libcharon / sa / keymat.h
CommitLineData
6a4ff35c
MW
1/*
2 * Copyright (C) 2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
4 *
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>.
9 *
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
13 * for more details.
6a4ff35c
MW
14 */
15
16/**
17 * @defgroup keymat keymat
18 * @{ @ingroup sa
19 */
20
21#ifndef KEYMAT_H_
22#define KEYMAT_H_
23
4b64a1a1
TB
24typedef struct keymat_t keymat_t;
25
6a4ff35c
MW
26#include <library.h>
27#include <utils/identification.h>
28#include <crypto/prfs/prf.h>
b5190712 29#include <crypto/aead.h>
2307bffe 30#include <crypto/proposal/proposal.h>
15a682f4 31#include <config/peer_cfg.h>
6a4ff35c
MW
32#include <sa/ike_sa_id.h>
33
acf27437
AKR
34/**
35 * Constructor function for custom keymat implementations
36 *
37 * @param initiator TRUE if the keymat is used as initiator
38 * @return keymat_t implementation
39 */
40typedef keymat_t* (*keymat_constructor_t)(bool initiator);
41
6a4ff35c
MW
42/**
43 * Derivation an management of sensitive keying material.
44 */
45struct keymat_t {
7daf5226 46
3bacc1f4
MW
47 /**
48 * Get IKE version of this keymat.
49 *
50 * @return IKEV1 for keymat_v1_t, IKEV2 for keymat_v2_t
51 */
52 ike_version_t (*get_version)(keymat_t *this);
53
6a4ff35c 54 /**
a64cc8f7 55 * Create a diffie hellman object for key agreement.
6a4ff35c 56 *
a64cc8f7
MW
57 * The diffie hellman is either for IKE negotiation/rekeying or
58 * CHILD_SA rekeying (using PFS). The resulting DH object must be passed
d0d600e1
MW
59 * to derive_keys or to derive_child_keys and destroyed after use.
60 *
61 * Only DH objects allocated through this method are passed to other
62 * keymat_t methods, allowing private DH implementations. In some cases
63 * (such as retrying with a COOKIE), a DH object allocated from a different
64 * keymat_t instance may be passed to other methods.
6a4ff35c 65 *
a64cc8f7
MW
66 * @param group diffie hellman group
67 * @return DH object, NULL if group not supported
6a4ff35c 68 */
a0563846
TB
69 diffie_hellman_t* (*create_dh)(keymat_t *this,
70 diffie_hellman_group_t group);
7daf5226 71
5338fe5e
AKR
72 /**
73 * Create a nonce generator object.
74 *
75 * The nonce generator can be used to create nonces needed during IKE/CHILD
76 * SA establishment or rekeying.
77 *
78 * @return nonce generator object
79 */
80 nonce_gen_t* (*create_nonce_gen)(keymat_t *this);
81
0ceb2888 82 /**
b5190712 83 * Get a AEAD transform to en-/decrypt and sign/verify IKE messages.
6a4ff35c
MW
84 *
85 * @param in TRUE for inbound (decrypt), FALSE for outbound (encrypt)
86 * @return crypter
87 */
b5190712 88 aead_t* (*get_aead)(keymat_t *this, bool in);
7daf5226 89
6a4ff35c
MW
90 /**
91 * Destroy a keymat_t.
92 */
93 void (*destroy)(keymat_t *this);
94};
95
96/**
4b64a1a1
TB
97 * Create the appropriate keymat_t implementation based on the IKE version.
98 *
99 * @param version requested IKE version
100 * @param initiator TRUE if we are initiator
101 * @return keymat_t implmenetation
102 */
103keymat_t *keymat_create(ike_version_t version, bool initiator);
104
6cd72730
MW
105/**
106 * Look up the key length of an encryption algorithm.
107 *
108 * @param alg algorithm to get key length for
109 * @return key length in bits
110 */
111int keymat_get_keylen_encr(encryption_algorithm_t alg);
112
113/**
114 * Look up the key length of an integrity algorithm.
6a4ff35c 115 *
6cd72730
MW
116 * @param alg algorithm to get key length for
117 * @return key length in bits
6a4ff35c 118 */
6cd72730 119int keymat_get_keylen_integ(integrity_algorithm_t alg);
6a4ff35c 120
acf27437
AKR
121/**
122 * Register keymat_t constructor for given IKE version.
123 *
124 * @param version IKE version of given keymat constructor
125 * @param create keymat constructor function, NULL to unregister
126 */
127void keymat_register_constructor(ike_version_t version,
128 keymat_constructor_t create);
129
4952dc11 130#endif /** KEYMAT_H_ @}*/