This repository contains the source code for scitt-ccf-ledger, an application that runs on top of CCF implementing draft standards developed within the IETF SCITT WG. Its purpose is to provide provenance for artefacts in digital supply chains, increasing trust in those artefacts. scitt-ccf-ledger achieves this by allowing signed claims about artefacts to be submitted to a secure immutable ledger, and returning receipts which prove claims have been stored and registration policies applied.
This research project is at an early stage and is open sourced to facilitate academic collaborations. We are keen to engage in research collaborations on this project, please do reach out to discuss this by opening an issue.
The instructions below guide you through building and deploying a local instance of scitt-ccf-ledger for development and testing purposes.
Being a CCF application, scitt-ccf-ledger runs in Intel SGX enclaves or AMD SEV-SNP platforms. However, for testing purposes, it also supports running on regular hardware in what is called virtual mode.
All instructions below assume Linux as the operating system.
Use the following commands to start a single-node CCF network with the scitt-ccf-ledger application setup for development purposes.
Note:
PLATFORM
should be set tosgx
,virtual
, orsnp
to select the type of build. Note: ifPLATFORM
is set tosnp
, additional configuration is required. Refer to this section for more details.
export PLATFORM=<sgx|virtual|snp>
./docker/build.sh
./docker/run-dev.sh
The node is now reachable at https://127.0.0.1:8000/.
Note that run-dev.sh
configures the network in a way that is not suitable for production, in particular it generates an ad-hoc governance member key pair and it disables API authentication.
See the demo/
folder on how to interact with the application.
See DEVELOPMENT.md for instructions on building, running, and testing scitt-ccf-ledger.
To help with the configuration of an application or to be able to interact with its API you could leverage the available CLI.
The pyscitt
CLI is written in Python and is available on PyPi here. To install it, you can use the following command:
pip install pyscitt
The CLI is also distributed through the GitHub releases as a wheel
file. Optionally, it can be used from within the repository using the ./pyscitt.sh
script. For example:
./pyscitt.sh --help
The CLI is extensively used in the following functional tests and demo scripts:
See pyscitt for more details.
See reproducibility.md for instructions.
This project welcomes contributions and suggestions. Please see the Contribution guidelines.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies.