1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
/* Copyright (C) 2025 maClara, LLC <info@maclara-llc.com>
This file is part of the JWT C Library
SPDX-License-Identifier: MPL-2.0
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <gnutls/gnutls.h>
#include <gnutls/crypto.h>
#include <gnutls/x509.h>
#include <gnutls/abstract.h>
#include <jwt.h>
#include "jwt-private.h"
static const char not_implemented[] = "GnuTLS does not yet implement JWK";
JWT_NO_EXPORT
int gnutls_process_eddsa(json_t *jwk, jwk_item_t *item)
{
jwt_write_error(item, not_implemented);
return -1;
}
JWT_NO_EXPORT
int gnutls_process_rsa(json_t *jwk, jwk_item_t *item)
{
jwt_write_error(item, not_implemented);
return -1;
}
JWT_NO_EXPORT
int gnutls_process_ec(json_t *jwk, jwk_item_t *item)
{
jwt_write_error(item, not_implemented);
return -1;
}
JWT_NO_EXPORT
void gnutls_process_item_free(jwk_item_t *item)
{
return;
}
|