README 572 B

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