arm-trusted-firmware/plat/arm/board/common/protpk
Sandrine Bailleux 32e26c067a plat/arm: Provide some PROTK files for development
When using the new dualroot chain of trust, a new root of trust key is
needed to authenticate the images belonging to the platform owner.
Provide a development one to deploy this on Arm platforms.

Change-Id: I481145e09aa564822d474cb47d38ec211dd24efd
Signed-off-by: Sandrine Bailleux <sandrine.bailleux@arm.com>
2020-02-24 11:01:42 +01:00
..
README plat/arm: Provide some PROTK files for development 2020-02-24 11:01:42 +01:00
arm_dev_protpk.S plat/arm: Provide some PROTK files for development 2020-02-24 11:01:42 +01:00
arm_protpk_rsa_sha256.bin plat/arm: Provide some PROTK files for development 2020-02-24 11:01:42 +01:00
arm_protprivk_rsa.pem plat/arm: Provide some PROTK files for development 2020-02-24 11:01:42 +01:00

README

This directory contains some development keys to be used as the platform
root-of-trust key.

* arm_protprivk_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_protprivk_rsa.pem

* arm_protpk_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_protprivk_rsa.pem -pubout -outform DER | \
    openssl dgst -sha256 -binary > arm_protpk_rsa_sha256.bin