1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Shell scripts to create SRK fuses from SRK table and create SRK table from SRK certificates.
##########################################################################
#
# SCRIPT: createSRKFuses
#
# DESCRIPTION: Create SRK fuses from SRK table generated by SRKTOOL or
# createSrkTable script. This script shows steps to compute
# SRK fuses and can be verified against the fuses generated
# by SRKTOOL or createSRKTable script.
#
##########################################################################
Usage:
./createSRKFuses <SRK table> <Number of SRKs> <SRK key length>
Number of SRK : 1 - 4
SRK Key Length : 1024, 2048, 3072, 4096
##########################################################################
#
# SCRIPT: createSRKTable
#
# DESCRIPTION: This script creats SRK table with input SRK certificates.
# Similar to what srktool does.
#
##########################################################################
Usage:
./createSRKTable <No. of SRKs> <SRK pub key 1> .. <SRK pub key 4>
Number of SRK : 1 - 4
|