Home

Awesome

ci

Tillitis TKey Signer

The TKey signer device application is an ed25519 signing tool. It can sign messages up to 4 kByte. It is, for instance, used by the tkey-ssh-agent for SSH authentication and by tkey-sign for doing digital signatures of files.

See Release notes.

Client Go package

We provide a Go package to use with signer:

Signer application protocol

signer has a simple application protocol on top of the TKey Framing Protocol.

The protocol state machine handling this protocol is documented in the implementation notes.

The protocol has the following requests and responses:

commandFunctionFP lengthcodedataresponse
CMD_GET_PUBKEYGet the public key1 B0x01noneRSP_GET_PUBKEY
CMD_SET_SIZESet size of message to be signed32 B0x03size as 32 bit LERSP_SET_SIZE
CMD_LOAD_DATALoad a chunk of message128 B0x05127 B null-paddedRSP_LOAD_DATA
CMD_GET_SIGSign and get signature1 B0x07noneRSP_GET_SIG
CMD_GET_NAMEVERSIONIdentify version of app1 B0x09noneRSP_GET_NAMEVERSION
CMD_GET_FIRMWARE_HASHAsk for digest of firmware32 B0x0bsize as 32 bit LERSP_GET_FIRMWARE_HASH
responseFP lengthcodedata
RSP_GET_PUBKEY128 B0x0232 byte ed25519 public key
RSP_SET_SIZE4 B0x041 byte status
RSP_LOAD_DATA4 B0x061 byte status
RSP_GET_SIG128 B0x0864 byte signature
RSP_GET_NAMEVERSION32 B0x0a2 * 4 byte name, version 32 bit LE
RSP_GET_FIRMWARE_HASH128 B0x0c1 byte status + 64 bytes digest
status repliescode
OK0
BAD1

It identifies itself with:

Please note that signer also replies with a NOK Framing Protocol response status if the endpoint field in the FP header is meant for the firmware (endpoint = DST_FW). This is recommended for well-behaved device applications so the client side can probe for the firmware.

Typical use by a client application:

  1. Probe for firmware by sending firmware's GET_NAME_VERSION with FP header endpoint = DST_FW.
  2. If firmware is found, load signer.
  3. Upon receiving the device app digest back from firmware, switch to start talking the signer protocol above.
  4. Send CMD_GET_PUBKEY to receive the signer's public key. If the public key is already stored, check against it so it's the expected key.
  5. Send CMD_SET_SIZE to set the size of the message to sign.
  6. Send repeated messages with CMD_LOAD_DATA to send the entire message.
  7. Send CMD_GET_SIG to get the signature over the message.

Please note: The firmware detection mechanism is not by any means secure. If in doubt a user should always remove the TKey and insert it again before doing any operation.

Licenses and SPDX tags

Unless otherwise noted, the project sources are licensed under the terms and conditions of the "GNU General Public License v2.0 only":

Copyright Tillitis AB.

These programs are free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 only.

These programs are distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see:

https://www.gnu.org/licenses

See LICENSE for the full GPLv2-only license text.

External source code we have imported are isolated in their own directories. They may be released under other licenses. This is noted with a similar LICENSE file in every directory containing imported sources.

The project uses single-line references to Unique License Identifiers as defined by the Linux Foundation's SPDX project on its own source files, but not necessarily imported files. The line in each individual source file identifies the license applicable to that file.

The current set of valid, predefined SPDX identifiers can be found on the SPDX License List at:

https://spdx.org/licenses/

Building

You have two options for build tools: either you use our OCI image ghcr.io/tillitis/tkey-builder or native tools.

An easy way to build is to use the provided scripts:

These scripts automatilly clone the tkey-libs device libraries in a directory next to this one.

If you want to use a pre-built libraries, download the libraries tar ball from

https://github.com/tillitis/tkey-libs/releases

unpack it, and specify where you unpacked it in LIBDIR when building:

make LIBDIR=~/Downloads/tkey-libs-v0.1.1

Note that your lld might complain if they were built with a different version. If so, either use the same version the release used or use podman.

Building with Podman

On Ubuntu 22.10, running

apt install podman rootlesskit slirp4netns

should be enough to get you a working Podman setup.

You can then either:

Building with host tools

To build with native tools you need at least the clang, llvm, lld, packages installed. Version 15 or later of LLVM/Clang is for support of our architecture (RV32_Zmmul). Ubuntu 22.10 (Kinetic) is known to have this. Please see toolchain_setup.md (in the tillitis-key1 repository) for detailed information on the currently supported build and development environment.

Build everything:

$ make

If you cloned tkey-libs to somewhere else then the default set LIBDIR to the path of the directory.

If your available objcopy is anything other than the default llvm-objcopy, then define OBJCOPY to whatever they're called on your system.

Disabling touch requirement

The signer normally requires the TKey to be physically touched for signing to complete. For special purposes it can be compiled with this requirement removed by setting the environment variable TKEY_SIGNER_APP_NO_TOUCH to some value when building. Example:

$ make TKEY_SIGNER_APP_NO_TOUCH=yesplease

Of course this changes the signer app binary and as a consequence the derived private key and identity will change.

Running

If you just want to sign a file or experiment with the signer, use the tkey-sign command which you can also use as an example on how to load and run the signer device app.

tkey-ssh-agent also uses this signer app.

Please see the Developer Handbook for how to run with QEMU or how to run apps on a TKey.