libwebsockets
Lightweight C library for HTML5 websockets
Loading...
Searching...
No Matches
lws-genhash.h
Go to the documentation of this file.
1/*
2 * libwebsockets - small server side websockets and web server implementation
3 *
4 * Copyright (C) 2010 - 2019 Andy Green <andy@warmcat.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 * IN THE SOFTWARE.
23 */
24
35
36#if defined(LWS_WITH_AWSLC) || defined(LWS_WITH_BORINGSSL)
37#include <openssl/hmac.h>
38#endif
39
40
49
56
57#define LWS_GENHASH_LARGEST 64
58
59#if defined(LWS_WITH_TLS) && defined(LWS_WITH_GENCRYPTO)
60
61struct lws_genhash_ctx {
62 uint8_t type;
63#if defined(LWS_WITH_MBEDTLS)
64 union {
65 mbedtls_md5_context md5;
66 mbedtls_sha1_context sha1;
67 mbedtls_sha256_context sha256;
68 mbedtls_sha512_context sha512; /* 384 also uses this */
69 const mbedtls_md_info_t *hmac;
70 } u;
71#elif defined(LWS_WITH_SCHANNEL)
72 struct {
73 void *hAlg;
74 void *hHash;
75 } u;
76#elif defined(LWS_WITH_GNUTLS)
77 union {
78 void *hash; /* gnutls_hash_hd_t */
79 } u;
80#else
81 const EVP_MD *evp_type;
82 EVP_MD_CTX *mdctx;
83#endif
84};
85
86struct lws_genhmac_ctx {
87 uint8_t type;
88#if defined(LWS_WITH_MBEDTLS)
89 const mbedtls_md_info_t *hmac;
90 mbedtls_md_context_t ctx;
91#elif defined(LWS_WITH_SCHANNEL)
92 struct {
93 void *hAlg;
94 void *hHash;
95 } u;
96#elif defined(LWS_WITH_GNUTLS)
97 union {
98 void *hash; /* gnutls_hash_hd_t */
99 } u;
100#else
101 const EVP_MD *evp_type;
102
103#if !defined(LWS_WITH_BORINGSSL) &&\
104 defined(LWS_HAVE_EVP_PKEY_new_raw_private_key)
105 EVP_MD_CTX *ctx;
106 EVP_PKEY *key;
107#else
108#if defined(LWS_HAVE_HMAC_CTX_new)
109 HMAC_CTX *ctx;
110#else
111 HMAC_CTX ctx;
112#endif
113#endif
114
115#endif
116};
117
126lws_genhash_size(enum lws_genhash_types type);
127
136lws_genhmac_size(enum lws_genhmac_types type);
137
146lws_genhash_init(struct lws_genhash_ctx *ctx, enum lws_genhash_types type);
147
157lws_genhash_update(struct lws_genhash_ctx *ctx, const void *in, size_t len);
158
171lws_genhash_destroy(struct lws_genhash_ctx *ctx, void *result);
172
186lws_genhmac_init(struct lws_genhmac_ctx *ctx, enum lws_genhmac_types type,
187 const uint8_t *key, size_t key_len);
188
200lws_genhmac_update(struct lws_genhmac_ctx *ctx, const void *in, size_t len);
201
214lws_genhmac_destroy(struct lws_genhmac_ctx *ctx, void *result);
215
216#endif
lws_genhash_types
Definition lws-genhash.h:41
lws_genhmac_types
Definition lws-genhash.h:50
@ LWS_GENHASH_TYPE_SHA384
Definition lws-genhash.h:46
@ LWS_GENHASH_TYPE_UNKNOWN
Definition lws-genhash.h:42
@ LWS_GENHASH_TYPE_MD5
Definition lws-genhash.h:43
@ LWS_GENHASH_TYPE_SHA1
Definition lws-genhash.h:44
@ LWS_GENHASH_TYPE_SHA512
Definition lws-genhash.h:47
@ LWS_GENHASH_TYPE_SHA256
Definition lws-genhash.h:45
@ LWS_GENHMAC_TYPE_SHA384
Definition lws-genhash.h:53
@ LWS_GENHMAC_TYPE_SHA512
Definition lws-genhash.h:54
@ LWS_GENHMAC_TYPE_UNKNOWN
Definition lws-genhash.h:51
@ LWS_GENHMAC_TYPE_SHA256
Definition lws-genhash.h:52
#define LWS_EXTERN
#define LWS_WARN_UNUSED_RESULT
#define LWS_VISIBLE