summaryrefslogtreecommitdiffstats
path: root/plat/arm/board/common/swd_rotpk/README
blob: b628a5fd8b1e5ebb9df925efcbf51eafe1cd3a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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