Remove leading/trailing blank lines in .c, .h, .py, .rst, .yml, and .yaml files. Will avoid failures with the new CI test in https://github.com/zephyrproject-rtos/ci-tools/pull/112, though it only checks changed files. Move the 'target-notes' target in boards/xtensa/odroid_go/doc/index.rst to get rid of the trailing blank line there. It was probably misplaced. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
67 lines
1.7 KiB
C
67 lines
1.7 KiB
C
/*
|
|
* RFC 7519 Json Web Tokens
|
|
*
|
|
* Copyright (C) 2018, Linaro, Ltd
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
* not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <zephyr/types.h>
|
|
#include <stdbool.h>
|
|
#include <ztest.h>
|
|
#include <data/json.h>
|
|
#include <data/jwt.h>
|
|
|
|
#include <mbedtls/pk.h>
|
|
#include <mbedtls/rsa.h>
|
|
#include <mbedtls/sha256.h>
|
|
|
|
extern unsigned char jwt_test_private_der[];
|
|
extern unsigned int jwt_test_private_der_len;
|
|
|
|
void test_jwt(void)
|
|
{
|
|
/*
|
|
* TODO: This length should be computable, based on the length
|
|
* of the audience string.
|
|
*/
|
|
char buf[460];
|
|
struct jwt_builder build;
|
|
int res;
|
|
|
|
res = jwt_init_builder(&build, buf, sizeof(buf));
|
|
|
|
zassert_equal(res, 0, "Setting up jwt");
|
|
|
|
res = jwt_add_payload(&build, 1530312026, 1530308426,
|
|
"iot-work-199419");
|
|
zassert_equal(res, 0, "Adding payload");
|
|
|
|
res = jwt_sign(&build, jwt_test_private_der, jwt_test_private_der_len);
|
|
zassert_equal(res, 0, "Signing payload");
|
|
|
|
zassert_equal(build.overflowed, false, "Not overflow");
|
|
|
|
printk("JWT:\n%s\n", buf);
|
|
printk("len: %zd\n", jwt_payload_len(&build));
|
|
}
|
|
|
|
void test_main(void)
|
|
{
|
|
ztest_test_suite(lib_jwt_test,
|
|
ztest_unit_test(test_jwt));
|
|
|
|
ztest_run_test_suite(lib_jwt_test);
|
|
}
|