source: asp3_tinet_ecnl_arm/trunk/wolfssl-3.12.2/wolfssl/openssl/hmac.h@ 352

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

arm向けASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 2.5 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/wolfcrypt/hmac.h>
40
41#ifdef __cplusplus
42 extern "C" {
43#endif
44
45
46WOLFSSL_API unsigned char* wolfSSL_HMAC(const WOLFSSL_EVP_MD* evp_md,
47 const void* key, int key_len,
48 const unsigned char* d, int n, unsigned char* md,
49 unsigned int* md_len);
50
51
52typedef struct WOLFSSL_HMAC_CTX {
53 Hmac hmac;
54 int type;
55} WOLFSSL_HMAC_CTX;
56
57
58WOLFSSL_API void wolfSSL_HMAC_Init(WOLFSSL_HMAC_CTX* ctx, const void* key,
59 int keylen, const EVP_MD* type);
60WOLFSSL_API int wolfSSL_HMAC_Init_ex(WOLFSSL_HMAC_CTX* ctx, const void* key,
61 int len, const EVP_MD* md, void* impl);
62WOLFSSL_API void wolfSSL_HMAC_Update(WOLFSSL_HMAC_CTX* ctx,
63 const unsigned char* data, int len);
64WOLFSSL_API void wolfSSL_HMAC_Final(WOLFSSL_HMAC_CTX* ctx, unsigned char* hash,
65 unsigned int* len);
66WOLFSSL_API void wolfSSL_HMAC_cleanup(WOLFSSL_HMAC_CTX* ctx);
67
68
69typedef struct WOLFSSL_HMAC_CTX HMAC_CTX;
70
71#define HMAC(a,b,c,d,e,f,g) wolfSSL_HMAC((a),(b),(c),(d),(e),(f),(g))
72
73#define HMAC_Init wolfSSL_HMAC_Init
74#define HMAC_Init_ex wolfSSL_HMAC_Init_ex
75#define HMAC_Update wolfSSL_HMAC_Update
76#define HMAC_Final wolfSSL_HMAC_Final
77#define HMAC_cleanup wolfSSL_HMAC_cleanup
78
79
80#ifdef __cplusplus
81 } /* extern "C" */
82#endif
83
84
85#endif /* WOLFSSL_HMAC_H_ */
Note: See TracBrowser for help on using the repository browser.