ndn-lite
ndn-lite-default-hmac-impl.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2018-2019 Zhiyi Zhang, Tianyuan Yu, Edward Lu
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v3.0. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
9 #ifndef NDN_LITE_DEFAULT_HMAC_IMPL_H
10 #define NDN_LITE_DEFAULT_HMAC_IMPL_H
11 
12 #include <stddef.h>
13 #include <stdint.h>
14 
19  uint8_t key_value[32];
23  uint32_t key_size;
24 };
25 
26 void
28 
29 #endif // NDN_LITE_DEFAULT_HMAC_IMPL_H
void ndn_lite_default_hmac_load_backend(void)
Definition: ndn-lite-default-hmac-impl.c:176
uint32_t key_size
The key size of key bytes.
Definition: ndn-lite-default-hmac-impl.h:23
Definition: ndn-lite-default-hmac-impl.h:15
uint8_t key_value[32]
The key bytes buffer of current key.
Definition: ndn-lite-default-hmac-impl.h:19