commit | db51805e864191fef95252b28d1acb1e95863236 | [log] [tgz] |
---|---|---|
author | Joakim Bech <joakim.bech@linaro.org> | Wed Apr 16 10:33:00 2025 +0200 |
committer | Jerome Forissier <jerome@forissier.org> | Fri May 09 08:59:29 2025 +0200 |
tree | 706d86be916af2ae0e99e2928247a20194df0863 | |
parent | 758da3ddc3e081999846f7c52bc2cf24687c2aff [diff] |
subkey: regenerate the subkey signatures We have increased the size of the default key in optee_os, necessitating re-signing the keys used in the subkey tests (xtest 1039). The existing keys have been updated using these commands: $ cd optee_test/ta $ ../../optee_os/scripts/sign_encrypt.py sign-subkey \ --uuid f04fa996-148a-453c-b037-1dcfbad120a6 \ --key ../../optee_os/keys/default_ta.pem \ --in top_level_subkey.pem \ --out top_level_subkey.bin \ --max-depth 4 --name-size 64 --subkey-version 1 $ ../../optee_os/scripts/sign_encrypt.py sign-subkey \ --uuid 1a5948c5-1aa0-518c-86f4-be6f6a057b16 \ --key top_level_subkey.pem \ --subkey top_level_subkey.bin \ --in mid_level_subkey.pem \ --out mid_level_subkey.bin \ --name-size 64 --subkey-version 1 --name mid_level_subkey $ ../../optee_os/scripts/sign_encrypt.py sign-subkey \ --uuid a720ccbb-51da-417d-b82e-e5445d474a7a \ --key ../../optee_os/keys/default_ta.pem \ --in identity_subkey2.pem \ --out identity_subkey2.bin \ --max-depth 0 --name-size 0 --subkey-version 1 It is important to note that these are test keys intended solely for testing purposes. Signed-off-by: Joakim Bech <joakim.bech@linaro.org> Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
This git contains source code for the test suite (xtest) used to test the OP-TEE project.
All official OP-TEE documentation has moved to http://optee.readthedocs.io. The information that used to be here in this git can be found under optee_test.
// OP-TEE core maintainers