-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mkm: use INI instead of TOML for config file format
The Python standard library module `tomllib` is only available in 3.11 and newer, but our CI currently uses an older version.
- Loading branch information
1 parent
fd1adf4
commit ccd0076
Showing
4 changed files
with
22 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...s/mission_key_management/test_config.toml → ...ts/mission_key_management/test_config.ini
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# "measurement of valid client code" | ||
[6d6561737572656d656e74206f662076616c696420636c69656e7420636f6465] | ||
# "key for encrypting secret things" | ||
key0 = "6b657920666f7220656e6372797074696e6720736563726574207468696e6773" | ||
key0 = 6b657920666f7220656e6372797074696e6720736563726574207468696e6773 | ||
# "another secret cryptographic key" | ||
key1 = "616e6f74686572207365637265742063727970746f67726170686963206b6579" | ||
key1 = 616e6f74686572207365637265742063727970746f67726170686963206b6579 | ||
|
||
# Measurement of `test_attest_helper.py` | ||
[d2813a46b2a071670fca308762ec34a76a61d67a321b43cb7d252fe4cc1d92a7] | ||
# "extra key for test_attest to use" | ||
key0 = "6578747261206b657920666f7220746573745f61747465737420746f20757365" | ||
key0 = 6578747261206b657920666f7220746573745f61747465737420746f20757365 | ||
|
||
# Measurement of `mkm_client`'s `run_client.sh` script | ||
[5bfaa5e5eddcc36e155bde859ac55e5277936791761a34b2c6bcb5da81b4746b] | ||
# "mkm_client uses this key to test" | ||
key0 = "6d6b6d5f636c69656e7420757365732074686973206b657920746f2074657374" | ||
key0 = 6d6b6d5f636c69656e7420757365732074686973206b657920746f2074657374 |