TBB: add tool to generate certificates
This patch adds a tool that generates all the necessary elements to establish the chain of trust (CoT) between the images. The tool reads the binary images and signing keys and outputs the corresponding certificates that will be used by the target at run time to verify the authenticity of the images. Note: the platform port must provide the file platform_oid.h. This file will define the OIDs of the x509 extensions that will be added to the certificates in order to establish the CoT. Change-Id: I2734d6808b964a2107ab3a4805110698066a04be
Showing
- .gitignore 2 additions, 0 deletions.gitignore
- Makefile 91 additions, 11 deletionsMakefile
- plat/fvp/include/platform_oid.h 69 additions, 0 deletionsplat/fvp/include/platform_oid.h
- plat/juno/include/platform_oid.h 69 additions, 0 deletionsplat/juno/include/platform_oid.h
- tools/cert_create/Makefile 92 additions, 0 deletionstools/cert_create/Makefile
- tools/cert_create/include/cert.h 69 additions, 0 deletionstools/cert_create/include/cert.h
- tools/cert_create/include/debug.h 83 additions, 0 deletionstools/cert_create/include/debug.h
- tools/cert_create/include/ext.h 70 additions, 0 deletionstools/cert_create/include/ext.h
- tools/cert_create/include/key.h 57 additions, 0 deletionstools/cert_create/include/key.h
- tools/cert_create/include/sha.h 36 additions, 0 deletionstools/cert_create/include/sha.h
- tools/cert_create/include/tbb_cert.h 58 additions, 0 deletionstools/cert_create/include/tbb_cert.h
- tools/cert_create/include/tbb_ext.h 38 additions, 0 deletionstools/cert_create/include/tbb_ext.h
- tools/cert_create/include/tbb_key.h 55 additions, 0 deletionstools/cert_create/include/tbb_key.h
- tools/cert_create/src/cert.c 180 additions, 0 deletionstools/cert_create/src/cert.c
- tools/cert_create/src/ext.c 233 additions, 0 deletionstools/cert_create/src/ext.c
- tools/cert_create/src/key.c 131 additions, 0 deletionstools/cert_create/src/key.c
- tools/cert_create/src/main.c 719 additions, 0 deletionstools/cert_create/src/main.c
- tools/cert_create/src/sha.c 64 additions, 0 deletionstools/cert_create/src/sha.c
- tools/cert_create/src/tbb_cert.c 111 additions, 0 deletionstools/cert_create/src/tbb_cert.c
- tools/cert_create/src/tbb_ext.c 118 additions, 0 deletionstools/cert_create/src/tbb_ext.c
Please register or sign in to comment