diff options
| author | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2020-11-30 17:39:26 +0100 | 
|---|---|---|
| committer | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2020-11-30 17:39:26 +0100 | 
| commit | 317b64b20bb44c37f6aef0008e65b18ab806cd51 (patch) | |
| tree | fca396681b2c1de484846c4b987304cd669469a9 /client | |
| parent | 9e6c301a830ef2675a2b2dab08002723b1315af4 (diff) | |
added and moved test data
Diffstat (limited to 'client')
| -rw-r--r-- | client/add-entry/main.go | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/client/add-entry/main.go b/client/add-entry/main.go index 084bdad..0f494aa 100644 --- a/client/add-entry/main.go +++ b/client/add-entry/main.go @@ -15,8 +15,8 @@ import (  var (  	operators = flag.String("operators", "../../descriptor/stfe.json", "path to json-encoded list of log operators")  	logId     = flag.String("log_id", "B9oCJk4XIOMXba8dBM5yUj+NLtqTE6xHwbvR9dYkHPM=", "base64-encoded log identifier") -	chain     = flag.String("chain", "../../server/testdata/x509/chain.pem", "path to pem-encoded certificate chain that the log accepts") -	key       = flag.String("key", "../../server/testdata/x509/end-entity.key", "path to ed25519 private key that corresponds to the chain's end-entity certificate") +	chain     = flag.String("chain", "../../x509util/testdata/chain.pem", "path to pem-encoded certificate chain that the log accepts") +	key       = flag.String("key", "../../x509util/testdata/end-entity.key", "path to ed25519 private key that corresponds to the chain's end-entity certificate")  	name      = flag.String("name", "foobar-1.2.3", "package name")  	checksum  = flag.String("checksum", "50e7967bce266a506f8f614bb5096beba580d205046b918f47d23b2ec626d75e", "base64-encoded package checksum")  ) | 
