Newer
Older
*/
/* nettle, low-level cryptographics library
*
* Copyright (C) 2001 Niels Mller
*
* The nettle library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or (at your
* option) any later version.
*
* The nettle library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the nettle library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
* MA 02111-1307, USA.
*/
#include "hmac.h"
#include "memxor.h"
#include <assert.h>
hmac_set_key(void *outer, void *inner, void *state,
const struct nettle_hash *hash,
unsigned key_length, const uint8_t *key)
{
/* Reduce key to the algorithm's hash size. Use the area pointed
* to by state for the temporary state. */
hash->init(state);
hash->update(state, key_length, key);
hash->digest(state, hash->digest_size, digest);
hmac_update(void *state,
const struct nettle_hash *hash,
unsigned length, const uint8_t *data)
{
hash->update(state, length, data);
}
void
hmac_digest(const void *outer, const void *inner, void *state,
const struct nettle_hash *hash,
hash->update(state, hash->digest_size, digest);
hash->digest(state, length, dst);