arm-trusted-firmware/plat/arm/board/common/swd_rotpk
laurenw-arm 98662a73c9 feat(arm): provide some swd rotpk files
When using the new cca chain of trust, a new root of trust key is needed
to authenticate the images belonging to the secure world. Provide a
development one to deploy this on Arm platforms.

Signed-off-by: Lauren Wehrmeister <lauren.wehrmeister@arm.com>
Change-Id: I9ea7bc1c15c0c94c1021d879a839cef40ba397e3
2022-06-14 09:47:37 -05:00
..
arm_dev_swd_rotpk.S feat(arm): provide some swd rotpk files 2022-06-14 09:47:37 -05:00
arm_swd_rotpk_rsa_sha256.bin feat(arm): provide some swd rotpk files 2022-06-14 09:47:37 -05:00
arm_swd_rotprivk_rsa.pem feat(arm): provide some swd rotpk files 2022-06-14 09:47:37 -05:00
README feat(arm): provide some swd rotpk files 2022-06-14 09:47:37 -05:00

This directory contains some development keys to be used as the secure world
root-of-trust key used in the CCA chain of trust.

* swd_rotprivk_rsa.pem is a 2K RSA private key in PEM format. It has been
  generated using the openssl command line tool:

  openssl genrsa 2048 > arm_swd_rotprivk_rsa.pem

* swd_rotpk_rsa_sha256.bin is the SHA-256 hash of the DER-encoded public key
  associated with the above private key. It has been generated using the openssl
  command line tool:

  openssl rsa -in arm_swd_rotprivk_rsa.pem -pubout -outform DER | \
    openssl dgst -sha256 -binary > arm_swd_rotpk_rsa_sha256.bin