source: azure_iot_hub/trunk/wolfssl-3.15.7/wolfssl/openssl/hmac.h@ 388

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

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-chdr
File size: 3.0 KB
Line 
1/* hmac.h
2 *
3 * Copyright (C) 2006-2017 wolfSSL Inc.
4 *
5 * This file is part of wolfSSL.
6 *
7 * wolfSSL is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * wolfSSL is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
20 */
21
22
23
24/* hmac.h defines mini hamc openssl compatibility layer
25 *
26 */
27
28
29#ifndef WOLFSSL_HMAC_H_
30#define WOLFSSL_HMAC_H_
31
32#include <wolfssl/wolfcrypt/settings.h>
33
34#ifdef WOLFSSL_PREFIX
35#include "prefix_hmac.h"
36#endif
37
38#include <wolfssl/openssl/evp.h>
39#include <wolfssl/openssl/opensslv.h>
40#include <wolfssl/wolfcrypt/hmac.h>
41
42#ifdef __cplusplus
43 extern "C" {
44#endif
45
46
47WOLFSSL_API unsigned char* wolfSSL_HMAC(const WOLFSSL_EVP_MD* evp_md,
48 const void* key, int key_len,
49 const unsigned char* d, int n, unsigned char* md,
50 unsigned int* md_len);
51
52
53typedef struct WOLFSSL_HMAC_CTX {
54 Hmac hmac;
55 int type;
56 word32 save_ipad[WC_HMAC_BLOCK_SIZE / sizeof(word32)]; /* same block size all*/
57 word32 save_opad[WC_HMAC_BLOCK_SIZE / sizeof(word32)];
58} WOLFSSL_HMAC_CTX;
59
60
61WOLFSSL_API int wolfSSL_HMAC_CTX_Init(WOLFSSL_HMAC_CTX* ctx);
62WOLFSSL_API int wolfSSL_HMAC_CTX_copy(WOLFSSL_HMAC_CTX* des,
63 WOLFSSL_HMAC_CTX* src);
64WOLFSSL_LOCAL int wolfSSL_HmacCopy(Hmac* des, Hmac* src);
65WOLFSSL_API int wolfSSL_HMAC_Init(WOLFSSL_HMAC_CTX* ctx, const void* key,
66 int keylen, const EVP_MD* type);
67WOLFSSL_API int wolfSSL_HMAC_Init_ex(WOLFSSL_HMAC_CTX* ctx, const void* key,
68 int keylen, const EVP_MD* type, WOLFSSL_ENGINE* e);
69WOLFSSL_API int wolfSSL_HMAC_Update(WOLFSSL_HMAC_CTX* ctx,
70 const unsigned char* data, int len);
71WOLFSSL_API int wolfSSL_HMAC_Final(WOLFSSL_HMAC_CTX* ctx, unsigned char* hash,
72 unsigned int* len);
73WOLFSSL_API int wolfSSL_HMAC_cleanup(WOLFSSL_HMAC_CTX* ctx);
74
75typedef struct WOLFSSL_HMAC_CTX HMAC_CTX;
76
77#define HMAC(a,b,c,d,e,f,g) wolfSSL_HMAC((a),(b),(c),(d),(e),(f),(g))
78
79#define HMAC_CTX_init wolfSSL_HMAC_CTX_Init
80#define HMAC_CTX_copy wolfSSL_HMAC_CTX_copy
81#define HMAC_Init_ex wolfSSL_HMAC_Init_ex
82#define HMAC_Init wolfSSL_HMAC_Init
83#define HMAC_Update wolfSSL_HMAC_Update
84#define HMAC_Final wolfSSL_HMAC_Final
85#define HMAC_cleanup wolfSSL_HMAC_cleanup
86
87
88#ifdef __cplusplus
89 } /* extern "C" */
90#endif
91
92
93#endif /* WOLFSSL_HMAC_H_ */
Note: See TracBrowser for help on using the repository browser.