You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sandrine Bailleux
32e26c067a
|
5 years ago | |
---|---|---|
.. | ||
README | 5 years ago | |
arm_dev_protpk.S | 5 years ago | |
arm_protpk_rsa_sha256.bin | 5 years ago | |
arm_protprivk_rsa.pem | 5 years ago |
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