libwebsockets
Lightweight C library for HTML5 websockets
Loading...
Searching...
No Matches
lws-genrsa.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/* include/libwebsockets/lws-jwk.h must be included before this */
37
38#if defined(LWS_WITH_OPENHITLS)
39#include <crypt_eal_pkey.h>
40#endif
41
48
50#if defined(LWS_WITH_MBEDTLS)
51#if !defined(LWS_HAVE_MBEDTLS_V4)
52 mbedtls_rsa_context *ctx;
53#else
54 psa_key_id_t key_id;
55#endif
56#elif defined(LWS_WITH_SCHANNEL)
57 struct {
58 void *hAlg;
59 void *hKey;
60 } u;
61#elif defined(LWS_WITH_GNUTLS)
62 gnutls_privkey_t priv;
63 gnutls_pubkey_t pub;
64#elif defined(LWS_WITH_BEARSSL)
65 br_rsa_public_key pub;
66 br_rsa_private_key priv;
67 void *kbuf_priv;
68 void *kbuf_pub;
69#elif defined(LWS_WITH_OPENHITLS)
70 CRYPT_EAL_PkeyCtx *ctx;
71 CRYPT_EAL_PkeyPub pub;
72 CRYPT_EAL_PkeyPrv prv;
73#else
75 EVP_PKEY_CTX *ctx;
76 RSA *rsa;
77#endif
78 struct lws_context *context;
81};
82
104 const struct lws_gencrypto_keyelem *el,
105 struct lws_context *context, enum enum_genrsa_mode mode,
106 enum lws_genhash_types oaep_hashid);
107
121
141lws_genrsa_new_keypair(struct lws_context *context, struct lws_genrsa_ctx *ctx,
142 enum enum_genrsa_mode mode, struct lws_gencrypto_keyelem *el,
143 int bits);
144
160 size_t in_len, uint8_t *out);
161
177 size_t in_len, uint8_t *out);
178
195 size_t in_len, uint8_t *out, size_t out_max);
196
213 size_t in_len, uint8_t *out, size_t out_max);
214
234 enum lws_genhash_types hash_type,
235 const uint8_t *sig, size_t sig_len);
236
255 enum lws_genhash_types hash_type,
256 uint8_t *sig, size_t sig_len);
257
268
280 uint8_t *pkey_asn1, size_t pkey_asn1_len);
enum lws_genhash_types oaep_hashid
Definition lws-genrsa.h:80
struct lws_context * context
Definition lws-genrsa.h:78
enum enum_genrsa_mode mode
Definition lws-genrsa.h:79
EVP_PKEY_CTX * ctx
Definition lws-genrsa.h:75
BIGNUM * bn[LWS_GENCRYPTO_RSA_KEYEL_COUNT]
Definition lws-genrsa.h:74
LWS_VISIBLE LWS_EXTERN int lws_genrsa_public_decrypt(struct lws_genrsa_ctx *ctx, const uint8_t *in, size_t in_len, uint8_t *out, size_t out_max)
LWS_VISIBLE LWS_EXTERN int lws_genrsa_create(struct lws_genrsa_ctx *ctx, const struct lws_gencrypto_keyelem *el, struct lws_context *context, enum enum_genrsa_mode mode, enum lws_genhash_types oaep_hashid)
LWS_VISIBLE LWS_EXTERN int lws_genrsa_new_keypair(struct lws_context *context, struct lws_genrsa_ctx *ctx, enum enum_genrsa_mode mode, struct lws_gencrypto_keyelem *el, int bits)
LWS_VISIBLE LWS_EXTERN void lws_genrsa_destroy_elements(struct lws_gencrypto_keyelem *el)
enum_genrsa_mode
Definition lws-genrsa.h:42
LWS_VISIBLE LWS_EXTERN int lws_genrsa_private_decrypt(struct lws_genrsa_ctx *ctx, const uint8_t *in, size_t in_len, uint8_t *out, size_t out_max)
LWS_VISIBLE LWS_EXTERN int lws_genrsa_render_pkey_asn1(struct lws_genrsa_ctx *ctx, int _private, uint8_t *pkey_asn1, size_t pkey_asn1_len)
LWS_VISIBLE LWS_EXTERN void lws_genrsa_destroy(struct lws_genrsa_ctx *ctx)
LWS_VISIBLE LWS_EXTERN int lws_genrsa_public_encrypt(struct lws_genrsa_ctx *ctx, const uint8_t *in, size_t in_len, uint8_t *out)
LWS_VISIBLE LWS_EXTERN int lws_genrsa_private_encrypt(struct lws_genrsa_ctx *ctx, const uint8_t *in, size_t in_len, uint8_t *out)
LWS_VISIBLE LWS_EXTERN int lws_genrsa_hash_sig_verify(struct lws_genrsa_ctx *ctx, const uint8_t *in, enum lws_genhash_types hash_type, const uint8_t *sig, size_t sig_len)
LWS_VISIBLE LWS_EXTERN int lws_genrsa_hash_sign(struct lws_genrsa_ctx *ctx, const uint8_t *in, enum lws_genhash_types hash_type, uint8_t *sig, size_t sig_len)
@ LGRSAM_PKCS1_OAEP_PSS
Definition lws-genrsa.h:44
@ LGRSAM_PKCS1_1_5
Definition lws-genrsa.h:43
@ LGRSAM_COUNT
Definition lws-genrsa.h:46
lws_genhash_types
Definition lws-genhash.h:53
#define LWS_EXTERN
unsigned char uint8_t
#define LWS_VISIBLE
@ LWS_GENCRYPTO_RSA_KEYEL_COUNT