From 24edd338be231b9ddded2519ed12573a74c95bfe Mon Sep 17 00:00:00 2001 From: jgough Date: Thu, 30 Nov 2023 09:10:02 +0000 Subject: [PATCH] fixup - amend gitignore to only filename defaults, change cbor extention to txt --- .gitignore | 7 ++++--- scitt/create_signed_statement.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index a6b24f1..478c538 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ venv/* -statement.json -signed-statement.cbor -my-signing-key.pem +payload.json +signed-statement.text +scitt-signing-key.pem +scitt-receipt.txt scitt/artifacts/_manifest/* diff --git a/scitt/create_signed_statement.py b/scitt/create_signed_statement.py index 67eee0c..b220c2e 100755 --- a/scitt/create_signed_statement.py +++ b/scitt/create_signed_statement.py @@ -166,7 +166,7 @@ def main(): "--output-file", type=str, help="name of the output file to store the signed statement.", - default="signed-statement.cbor", + default="signed-statement.txt", ) args = parser.parse_args()