123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- /* hmac.h - TinyCrypt interface to an HMAC implementation */
- /*
- * Copyright (C) 2017 by Intel Corporation, All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * - Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- *
- * - Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * - Neither the name of Intel Corporation nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- */
- /**
- * @file
- * @brief Interface to an HMAC implementation.
- *
- * Overview: HMAC is a message authentication code based on hash functions.
- * TinyCrypt hard codes SHA-256 as the hash function. A message
- * authentication code based on hash functions is also called a
- * keyed cryptographic hash function since it performs a
- * transformation specified by a key in an arbitrary length data
- * set into a fixed length data set (also called tag).
- *
- * Security: The security of the HMAC depends on the length of the key and
- * on the security of the hash function. Note that HMAC primitives
- * are much less affected by collision attacks than their
- * corresponding hash functions.
- *
- * Requires: SHA-256
- *
- * Usage: 1) call tc_hmac_set_key to set the HMAC key.
- *
- * 2) call tc_hmac_init to initialize a struct hash_state before
- * processing the data.
- *
- * 3) call tc_hmac_update to process the next input segment;
- * tc_hmac_update can be called as many times as needed to process
- * all of the segments of the input; the order is important.
- *
- * 4) call tc_hmac_final to out put the tag.
- */
- #ifndef __TC_HMAC_H__
- #define __TC_HMAC_H__
- #include <tinycrypt/sha256.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- struct tc_hmac_state_struct {
- /* the internal state required by h */
- struct tc_sha256_state_struct hash_state;
- /* HMAC key schedule */
- uint8_t key[2*TC_SHA256_BLOCK_SIZE];
- };
- typedef struct tc_hmac_state_struct *TCHmacState_t;
- /**
- * @brief HMAC set key procedure
- * Configures ctx to use key
- * @return returns TC_CRYPTO_SUCCESS (1)
- * returns TC_CRYPTO_FAIL (0) if
- * ctx == NULL or
- * key == NULL or
- * key_size == 0
- * @param ctx IN/OUT -- the struct tc_hmac_state_struct to initial
- * @param key IN -- the HMAC key to configure
- * @param key_size IN -- the HMAC key size
- */
- int tc_hmac_set_key(TCHmacState_t ctx, const uint8_t *key,
- unsigned int key_size);
- /**
- * @brief HMAC init procedure
- * Initializes ctx to begin the next HMAC operation
- * @return returns TC_CRYPTO_SUCCESS (1)
- * returns TC_CRYPTO_FAIL (0) if: ctx == NULL or key == NULL
- * @param ctx IN/OUT -- struct tc_hmac_state_struct buffer to init
- */
- int tc_hmac_init(TCHmacState_t ctx);
- /**
- * @brief HMAC update procedure
- * Mixes data_length bytes addressed by data into state
- * @return returns TC_CRYPTO_SUCCCESS (1)
- * returns TC_CRYPTO_FAIL (0) if: ctx == NULL or key == NULL
- * @note Assumes state has been initialized by tc_hmac_init
- * @param ctx IN/OUT -- state of HMAC computation so far
- * @param data IN -- data to incorporate into state
- * @param data_length IN -- size of data in bytes
- */
- int tc_hmac_update(TCHmacState_t ctx, const void *data,
- unsigned int data_length);
- /**
- * @brief HMAC final procedure
- * Writes the HMAC tag into the tag buffer
- * @return returns TC_CRYPTO_SUCCESS (1)
- * returns TC_CRYPTO_FAIL (0) if:
- * tag == NULL or
- * ctx == NULL or
- * key == NULL or
- * taglen != TC_SHA256_DIGEST_SIZE
- * @note ctx is erased before exiting. This should never be changed/removed.
- * @note Assumes the tag bufer is at least sizeof(hmac_tag_size(state)) bytes
- * state has been initialized by tc_hmac_init
- * @param tag IN/OUT -- buffer to receive computed HMAC tag
- * @param taglen IN -- size of tag in bytes
- * @param ctx IN/OUT -- the HMAC state for computing tag
- */
- int tc_hmac_final(uint8_t *tag, unsigned int taglen, TCHmacState_t ctx);
- #ifdef __cplusplus
- }
- #endif
- #endif /*__TC_HMAC_H__*/
|