]> git.ipfire.org Git - thirdparty/strongswan.git/blob - programs/charon/charon/encoding/payloads/nonce_payload.h
- renamed get_block_size of hasher
[thirdparty/strongswan.git] / programs / charon / charon / encoding / payloads / nonce_payload.h
1 /**
2 * @file nonce_payload.h
3 *
4 * @brief Interface of nonce_payload_t.
5 *
6 */
7
8 /*
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
21 */
22
23 #ifndef NONCE_PAYLOAD_H_
24 #define NONCE_PAYLOAD_H_
25
26 #include <types.h>
27 #include <encoding/payloads/payload.h>
28
29 /**
30 * Length of a nonce payload without a nonce in bytes.
31 *
32 * @ingroup payloads
33 */
34 #define NONCE_PAYLOAD_HEADER_LENGTH 4
35
36 typedef struct nonce_payload_t nonce_payload_t;
37
38 /**
39 * Object representing an IKEv2 Nonce payload.
40 *
41 * The Nonce payload format is described in RFC section 3.3.
42 *
43 * @b Constructors:
44 * - nonce_payload_create()
45 *
46 * @ingroup payloads
47 */
48 struct nonce_payload_t {
49 /**
50 * The payload_t interface.
51 */
52 payload_t payload_interface;
53
54 /**
55 * @brief Set the nonce value.
56 *
57 * @param this calling nonce_payload_t object
58 * @param nonce chunk containing the nonce, will be cloned
59 */
60 void (*set_nonce) (nonce_payload_t *this, chunk_t nonce);
61
62 /**
63 * @brief Get the nonce value.
64 *
65 * @param this calling nonce_payload_t object
66 * @return a chunk containing the cloned nonce
67 */
68 chunk_t (*get_nonce) (nonce_payload_t *this);
69
70 /**
71 * @brief Destroys an nonce_payload_t object.
72 *
73 * @param this nonce_payload_t object to destroy
74 */
75 void (*destroy) (nonce_payload_t *this);
76 };
77
78 /**
79 * @brief Creates an empty nonce_payload_t object
80 *
81 * @return nonce_payload_t object
82 *
83 * @ingroup payloads
84 */
85
86 nonce_payload_t *nonce_payload_create();
87
88
89 #endif /*NONCE_PAYLOAD_H_*/