source: azure_iot_hub/trunk/azure_iothub/c-utility/inc/azure_c_shared_utility/hmac.h@ 389

Last change on this file since 389 was 389, checked in by coas-nagasima, 5 years ago

ビルドが通るよう更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 549 bytes
Line 
1// Copyright (c) Microsoft. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
4#ifndef HMAC_H
5#define HMAC_H
6
7#include "azure_c_shared_utility/sha.h"
8#include "azure_c_shared_utility/umock_c_prod.h"
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14 MOCKABLE_FUNCTION(, int, hmac, SHAversion, whichSha, const unsigned char *, text, int, text_len,
15 const unsigned char *, key, int, key_len,
16 uint8_t, digest[USHAMaxHashSize]);
17
18#ifdef __cplusplus
19}
20#endif
21
22#endif /* HMAC_H */
Note: See TracBrowser for help on using the repository browser.