mirror of
https://libwebsockets.org/repo/libwebsockets
synced 2024-11-21 16:47:52 +00:00
4db2ff872b
Support for COSE keys and signing / validation - lws_cose_key_t and import / export / generation apis for EC / RSA / SYMMETRIC - cose_sign1 ES256/384/512,RS256/384/512 sign + validate, passes RFC8152 WG tests sign1-tests - cose_sign ES256/384/512,RS256/384/512 sign + validate, passes RFC8152 WG tests sign-tests - cose_mac0 HS256/HS256_64/384/512 sign + validate, passes RFC8152 WG tests hmac-examples - cose_mac HS256/HS256_64/384/512 validate, passes RFC8152 WG tests hmac-examples - lws-crypto-cose-key commandline tool for key / key set dumping and creation - lws-crypro-cose-sign commandline tool for signing / validation - lws-api-test-cose - large number of test vectors and tests from RFC8152
54 lines
2.1 KiB
C
54 lines
2.1 KiB
C
/*
|
|
* libwebsockets - small server side websockets and web server implementation
|
|
*
|
|
* Copyright (C) 2010 - 2019 Andy Green <andy@warmcat.com>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to
|
|
* deal in the Software without restriction, including without limitation the
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
* IN THE SOFTWARE.
|
|
*/
|
|
|
|
/* information about each token declared above */
|
|
|
|
#define F_M (1 << 9) /* Mandatory for key type */
|
|
#define F_B64 (1 << 10) /* Base64 coded octets */
|
|
#define F_B64U (1 << 11) /* Base64 Url coded octets */
|
|
#define F_META (1 << 12) /* JWK key metainformation */
|
|
#define F_RSA (1 << 13) /* RSA key */
|
|
#define F_EC (1 << 14) /* Elliptic curve key */
|
|
#define F_OCT (1 << 15) /* octet key */
|
|
|
|
void
|
|
lws_jwk_destroy_elements(struct lws_gencrypto_keyelem *el, int m);
|
|
|
|
int
|
|
lws_jose_render(struct lws_jose *jose, struct lws_jwk *aux_jwk,
|
|
char *out, size_t out_len);
|
|
|
|
int
|
|
_lws_jwk_set_el_jwk(struct lws_gencrypto_keyelem *e, char *in, size_t len);
|
|
|
|
void
|
|
lws_jwk_init_jps(struct lws_jwk_parse_state *jps,
|
|
struct lws_jwk *jwk, lws_jwk_key_import_callback cb,
|
|
void *user);
|
|
|
|
signed char
|
|
cb_jwk(struct lejp_ctx *ctx, char reason);
|
|
|
|
extern const char * const jwk_tok[19], * const jwk_outer_tok[19];
|