Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions apploader/conf/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@ csvAssistants:
type: job
entrypoint: /workplace/csv-agent/csvassistants/keyprovider/key_provider_agent
env:
mode: local #local or kbs
localKey: 00112233445566778899aabbccddeeff
kbsEndpoint: 127.0.0.1:1234
attestion: csv
localKey: 00112233445566778899aabbccddeeff
args: [""]


Expand Down
2 changes: 0 additions & 2 deletions base-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ RUN apt-get install -y \
libssl-dev \
software-properties-common \
libcurl4-openssl-dev \
libjansson-dev \
libcbor-dev

# RA-TLS DCAP libraries:
Expand Down Expand Up @@ -85,7 +84,6 @@ RUN apt-get update \
wget \
software-properties-common \
vim \
libjansson-dev \
libcbor-dev

RUN mkdir -p /usr/share/zoneinfo/
Expand Down
5 changes: 2 additions & 3 deletions cvmassistants/keyprovider/key-provider-agent/Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
CC=cc
CFLAGS += -Wall -I/usr/local/include/rats-tls/
LDFLAGS += -L/usr/local/lib/rats-tls/
CFLAGS += -Wall

all: key_provider_agent

key_provider_agent: src/key_provider_agent.c
$(CC) src/key_provider_agent.c -lcurl -lrats_tls -ljansson -o $@ $(CFLAGS) $(LDFLAGS)
$(CC) src/key_provider_agent.c -lcurl -o $@ $(CFLAGS)

clean:
/bin/rm -rf *.o *~ key_provider_agent
Loading