• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

READMED11-Mar-2024614 1510

arm_dev_swd_rotpk.SD11-Mar-2024447 198

arm_swd_rotpk_rsa_sha256.binD11-Mar-202432

arm_swd_rotprivk_rsa.pemD11-Mar-20241.6 KiB2827

README

1This directory contains some development keys to be used as the secure world
2root-of-trust key used in the CCA chain of trust.
3
4* swd_rotprivk_rsa.pem is a 2K RSA private key in PEM format. It has been
5  generated using the openssl command line tool:
6
7  openssl genrsa 2048 > arm_swd_rotprivk_rsa.pem
8
9* swd_rotpk_rsa_sha256.bin is the SHA-256 hash of the DER-encoded public key
10  associated with the above private key. It has been generated using the openssl
11  command line tool:
12
13  openssl rsa -in arm_swd_rotprivk_rsa.pem -pubout -outform DER | \
14    openssl dgst -sha256 -binary > arm_swd_rotpk_rsa_sha256.bin
15