ndn-lite
tc_hmac.h
Go to the documentation of this file.
1 /* hmac.h - TinyCrypt interface to an HMAC implementation */
2 
3 /*
4  * Copyright (C) 2017 by Intel Corporation, All Rights Reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  *
9  * - Redistributions of source code must retain the above copyright notice,
10  * this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * - Neither the name of Intel Corporation nor the names of its contributors
17  * may be used to endorse or promote products derived from this software
18  * without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32 
63 #ifndef __TC_HMAC_H__
64 #define __TC_HMAC_H__
65 
66 #include "tc_sha256.h"
67 
68 #ifdef __cplusplus
69 extern "C" {
70 #endif
71 
73  /* the internal state required by h */
75  /* HMAC key schedule */
77 };
79 
92 int tc_hmac_set_key(TCHmacState_t ctx, const uint8_t *key,
93  unsigned int key_size);
94 
102 int tc_hmac_init(TCHmacState_t ctx);
103 
114 int tc_hmac_update(TCHmacState_t ctx, const void *data,
115  unsigned int data_length);
116 
133 int tc_hmac_final(uint8_t *tag, unsigned int taglen, TCHmacState_t ctx);
134 
135 #ifdef __cplusplus
136 }
137 #endif
138 
139 #endif /*__TC_HMAC_H__*/
struct tc_sha256_state_struct hash_state
Definition: tc_hmac.h:74
Definition: tc_sha256.h:71
struct tc_hmac_state_struct * TCHmacState_t
Definition: tc_hmac.h:78
int tc_hmac_update(TCHmacState_t ctx, const void *data, unsigned int data_length)
HMAC update procedure Mixes data_length bytes addressed by data into state.
Definition: tc_hmac.c:110
int tc_hmac_final(uint8_t *tag, unsigned int taglen, TCHmacState_t ctx)
HMAC final procedure Writes the HMAC tag into the tag buffer.
Definition: tc_hmac.c:125
#define TC_SHA256_BLOCK_SIZE
Definition: tc_sha256.h:67
uint8_t key[2 *TC_SHA256_BLOCK_SIZE]
Definition: tc_hmac.h:76
int tc_hmac_init(TCHmacState_t ctx)
HMAC init procedure Initializes ctx to begin the next HMAC operation.
Definition: tc_hmac.c:96
Definition: tc_hmac.h:72
Interface to a SHA-256 implementation.
int tc_hmac_set_key(TCHmacState_t ctx, const uint8_t *key, unsigned int key_size)
HMAC set key procedure Configures ctx to use key.
Definition: tc_hmac.c:52