4 * @brief Interface of hmac_t.
8 * Copyright (C) 2005-2006 Martin Willi
9 * Copyright (C) 2005 Jan Hutter
10 * Hochschule fuer Technik Rapperswil
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>.
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
26 typedef struct hmac_t hmac_t
;
28 #include <crypto/hashers/hasher.h>
31 * @brief Message authentication using hash functions.
33 * This class implements the message authenticaion algorithm
34 * described in RFC2104. It uses a hash function, wich must
35 * be implemented as a hasher_t class.
37 * See http://www.faqs.org/rfcs/rfc2104.html for RFC.
49 * @brief Generate message authentication code.
51 * If buffer is NULL, no result is given back. A next call will
52 * append the data to already supplied data. If buffer is not NULL,
53 * the mac of all apended data is calculated, returned and the
54 * state of the hmac_t is reseted.
56 * @param this calling object
57 * @param data chunk of data to authenticate
58 * @param[out] buffer pointer where the generated bytes will be written
60 void (*get_mac
) (hmac_t
*this, chunk_t data
, u_int8_t
*buffer
);
63 * @brief Generates message authentication code and
64 * allocate space for them.
66 * If chunk is NULL, no result is given back. A next call will
67 * append the data to already supplied. If chunk is not NULL,
68 * the mac of all apended data is calculated, returned and the
69 * state of the hmac_t reset;
71 * @param this calling object
72 * @param data chunk of data to authenticate
73 * @param[out] chunk chunk which will hold generated bytes
75 void (*allocate_mac
) (hmac_t
*this, chunk_t data
, chunk_t
*chunk
);
78 * @brief Get the block size of this hmac_t object.
80 * @param this calling object
81 * @return block size in bytes
83 size_t (*get_block_size
) (hmac_t
*this);
86 * @brief Set the key for this hmac_t object.
88 * Any key length is accepted.
90 * @param this calling object
91 * @param key key to set
93 void (*set_key
) (hmac_t
*this, chunk_t key
);
96 * @brief Destroys a hmac_t object.
98 * @param this calling object
100 void (*destroy
) (hmac_t
*this);
104 * @brief Creates a new hmac_t object.
106 * Creates a hasher_t object internally.
108 * @param hash_algorithm hash algorithm to use
111 * - NULL if hash algorithm is not supported
113 * @ingroup transforms
115 hmac_t
*hmac_create(hash_algorithm_t hash_algorithm
);