Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 2.38 KB

README.md

File metadata and controls

39 lines (28 loc) · 2.38 KB

Example Certificates and Tokens for KUKSA

This directory contains example keys, tokens and certificates that can be used for testing clients and servers in this repository. Many of the clients and servers in this repository use keys, tokens and certificates from this directory by default.

Note that the primary storage location for keys, tokens and certificates usable for KUKSA Databroker is kuksa-common. Files that also exist here should be considered as copies.

Keys and Certificates for TLS connections

This directory contain a set of example certificates, used by the KUKSA-project during development and testing. They may or may not be useful for your test environment. If needed you can customize the genCerts.sh script and generate keys and certificates that fits your environment.

See the KUKSA TLS documentation for general information on the KUKSA TLS concept.

This directory contains the following files with cryptographical information.

Component Description
CA.key Root key, not needed by KUKSA applications
CA.pem Root certificate, valid for 3650 days ( 10 years).
Server.key Server key, needed by KUKSA Databroker for TLS.
Server.pem Server certificate chain, valid for 365 days, needed by KUKSA Databroker for TLS.
Client.key Client key, currently not needed as mutual authentication is not supported.
Server.pem Client certificate chain, valid for 365 days, currently not needed as mutual authentication is not supported.

If the certificates have expired or you by any other reason need to regenerate keys or certificates you can use the genCerts.sh as described in kuksa-common documentation.

Java Web Tokens (JWT)

KUKSA Databroker use Java Web Tokens (JWT) to validate that a client is authorized to read or write a specific datapoints. Example root key exist in the jwt folder. It contains a [jwt.key](jwt/jwt.key] file used to sign tokens.

Two helper scripts exist for generating keys and tokens, please see kuksa-common documentation