ccatoken 0.1.0

CCA attestation token decoding, verification, and appraisal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright 2023 Contributors to the Veraison project.
# SPDX-License-Identifier: Apache-2.0

DIAG_TESTDATA := $(wildcard *.diag)
CBOR_TESTDATA := $(DIAG_TESTDATA:.diag=.cbor)

%.cbor: %.diag ; diag2cbor.rb $< > $@

CLEANFILES += $(CBOR_TESTDATA)

all: $(CBOR_TESTDATA)

clean: ; $(RM) -f $(CLEANFILES)