libwebsockets
Lightweight C library for HTML5 websockets
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 
43 };
44 
50 };
51 
52 #define LWS_GENHASH_LARGEST 64
53 
54 #if defined(LWS_WITH_TLS) && defined(LWS_WITH_GENCRYPTO)
55 
56 struct lws_genhash_ctx {
57  uint8_t type;
58 #if defined(LWS_WITH_MBEDTLS)
59  union {
60  mbedtls_md5_context md5;
61  mbedtls_sha1_context sha1;
62  mbedtls_sha256_context sha256;
63  mbedtls_sha512_context sha512; /* 384 also uses this */
64  const mbedtls_md_info_t *hmac;
65  } u;
66 #else
67  const EVP_MD *evp_type;
68  EVP_MD_CTX *mdctx;
69 #endif
70 };
71 
72 struct lws_genhmac_ctx {
73  uint8_t type;
74 #if defined(LWS_WITH_MBEDTLS)
75  const mbedtls_md_info_t *hmac;
76  mbedtls_md_context_t ctx;
77 #else
78  const EVP_MD *evp_type;
79 
80 #if defined(LWS_HAVE_EVP_PKEY_new_raw_private_key)
81  EVP_MD_CTX *ctx;
82  EVP_PKEY *key;
83 #else
84 #if defined(LWS_HAVE_HMAC_CTX_new)
85  HMAC_CTX *ctx;
86 #else
87  HMAC_CTX ctx;
88 #endif
89 #endif
90 
91 #endif
92 };
93 
102 lws_genhash_size(enum lws_genhash_types type);
103 
112 lws_genhmac_size(enum lws_genhmac_types type);
113 
122 lws_genhash_init(struct lws_genhash_ctx *ctx, enum lws_genhash_types type);
123 
133 lws_genhash_update(struct lws_genhash_ctx *ctx, const void *in, size_t len);
134 
147 lws_genhash_destroy(struct lws_genhash_ctx *ctx, void *result);
148 
162 lws_genhmac_init(struct lws_genhmac_ctx *ctx, enum lws_genhmac_types type,
163  const uint8_t *key, size_t key_len);
164 
176 lws_genhmac_update(struct lws_genhmac_ctx *ctx, const void *in, size_t len);
177 
190 lws_genhmac_destroy(struct lws_genhmac_ctx *ctx, void *result);
191 
192 #endif
lws_genhash_types
Definition: lws-genhash.h:36
lws_genhmac_types
Definition: lws-genhash.h:45
@ LWS_GENHASH_TYPE_SHA384
Definition: lws-genhash.h:41
@ LWS_GENHASH_TYPE_UNKNOWN
Definition: lws-genhash.h:37
@ LWS_GENHASH_TYPE_MD5
Definition: lws-genhash.h:38
@ LWS_GENHASH_TYPE_SHA1
Definition: lws-genhash.h:39
@ LWS_GENHASH_TYPE_SHA512
Definition: lws-genhash.h:42
@ LWS_GENHASH_TYPE_SHA256
Definition: lws-genhash.h:40
@ LWS_GENHMAC_TYPE_SHA384
Definition: lws-genhash.h:48
@ LWS_GENHMAC_TYPE_SHA512
Definition: lws-genhash.h:49
@ LWS_GENHMAC_TYPE_UNKNOWN
Definition: lws-genhash.h:46
@ LWS_GENHMAC_TYPE_SHA256
Definition: lws-genhash.h:47
#define LWS_EXTERN
unsigned char uint8_t
#define LWS_WARN_UNUSED_RESULT
#define LWS_VISIBLE