diff options
author | Linus Nordberg <linus@nordberg.se> | 2022-03-03 13:48:36 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2022-03-03 13:48:36 +0100 |
commit | 24ae22b781652fd3d2d76755704b14841bdb39aa (patch) | |
tree | 05704afe6e546f225f41082ff9870580c3aea21d /integration/config | |
parent | b32ad0cc7d6c0b14e5a94c6e19d1d98429a818bb (diff) |
move values specific to a test instance to a separate file
Diffstat (limited to 'integration/config')
-rw-r--r-- | integration/config | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/integration/config b/integration/config new file mode 100644 index 0000000..5631589 --- /dev/null +++ b/integration/config @@ -0,0 +1,18 @@ +# Use createtree to create a trillian tree and set tree_id. +tree_id= + +# Use sigsum_keygen to generate a key pair for the log and set log_sk. +log_sk= + +# Use sigsum_keygen to generate a key pair for the witness and set wit_sk. +wit_sk= + +# Use sigsum_keygen to generate a key pair for submission and set submit_sk. +# Add a TXT record named $domain_hint with the hash of the vk as its value. +submit_sk= +domain_hint=_label.example.com + + +log_vk=$(echo $log_sk | cut -c 65-) +wit_vk=$(echo $wit_sk | cut -c 65-) +submit_vk=$(echo $submit_sk | cut -c 65-) |