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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
|
@echo off
::-----------------------------------------------------------------------------
::
:: File: ahab_pki_tree.bat
::
:: Description: This script generates a basic AHAB PKI tree for the NXP
:: AHAB code signing feature. What the PKI tree looks like depends
:: on whether the SRK is chosen to be a CA key or not. If the
:: SRKs are chosen to be CA keys then this script will generate the
:: following PKI tree:
::
:: CA Key
:: | | |
:: -------- + | +---------------
:: / | ^
:: SRK1 SRK2 ... SRKN
:: | | |
:: | | |
:: SGK1 SGK2 SGKN
::
:: where: N can be 1 to 4.
::
:: Additional keys can be added to the tree separately. In this
:: configuration SRKs may only be used to sign/verify other
:: keys/certificates
::
:: If the SRKs are chosen to be non-CA keys then this script will
:: generate the following PKI tree:
::
:: CA Key
:: | | |
:: -------- + | +---------------
:: / | ^
:: SRK1 SRK2 ... SRKN
::
:: In this configuration SRKs may only be used to sign code/data
:: and not other keys. Note that not all NXP processors
:: including AHAB support this option.
::
:: Copyright 2018-2019 NXP
::
::-----------------------------------------------------------------------------
echo.
echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo This script is a part of the Code signing tools for NXP's
echo Advanced High Assurance Boot. It generates a basic PKI tree. The
echo PKI tree consists of one or more Super Root Keys (SRK), with each
echo SRK having one subordinate keys:
echo + a Signing key (SGK)
echo Additional keys can be added to the PKI tree but a separate
echo script is available for this. This this script assumes openssl
echo is installed on your system and is included in your search
echo path. Finally, the private keys generated are password
echo protectedwith the password provided by the file key_pass.txt.
echo The format of the file is the password repeated twice:
echo my_password
echo my_password
echo All private keys in the PKI tree are in PKCS #8 format will be
echo protected by the same password.
echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo.
set scriptName=%0
set numArgs=0
for %%x in (%*) do set /A numArgs+=1
if %numArgs% GTR 0 (
set interactive=n
) else (
set interactive=y
)
set max_param=16
set min_param=12
if %interactive%==n (
if "%1" == "-h" ( goto usage )
if "%1" == "--help" ( goto usage )
) else (
goto process_ca_key
)
:: Validate command line parameters
if %numArgs% LSS %min_param% (
echo ERROR: Correct parameters required in non-interactive mode
goto usage
)
if %numArgs% GTR %max_param% (
echo ERROR: Correct parameters required in non-interactive mode
goto usage
)
:: Process command line inputs
set args=0
set "existing_ca="
set "ca_key="
set "ca_cert="
set "use_ecc="
set "kl="
set "da="
set "duration="
set "srk_ca="
:PROCESSINPUT
if %args% GEQ %numArgs% goto validateargs
if "%1"=="-existing-ca" (
set existing_ca=%2
goto shiftargs
)
if "%1"=="-ca-key" (
set ca_key=%2
goto shiftargs
)
if "%1"=="-ca-cert" (
set ca_cert=%2
goto shiftargs
)
if "%1"=="-use-ecc" (
set use_ecc=%2
goto shiftargs
)
if "%1"=="-kl" (
set kl=%2
goto shiftargs
)
if "%1"=="-da" (
set da=%2
goto shiftargs
)
if "%1"=="-duration" (
set duration=%2
goto shiftargs
)
if "%1"=="-srk-ca" (
set srk_ca=%2
goto shiftargs
) else (
echo ERROR: Invalid parameter: %1
goto usage
)
:SHIFTARGS
shift
shift
set /A args+=2
goto processinput
:VALIDATEARGS
if %existing_ca%==y ( if not defined ca_key (
echo ERROR: CA key is required.
goto usage
))
if %existing_ca%==y ( if not defined ca_cert (
echo ERROR: CA cert is required
goto usage
))
goto process_ca_key
:USAGE
echo.
echo Usage:
echo Interactive Mode:
echo %scriptName%
echo.
echo Command Line Mode:
echo "%scriptName% -existing-ca <y/n> [-ca-key <CA key name> -ca-cert <CA cert name>] -use-ecc <y/n> -kl <ECC/RSA Key Length> -da <digest algorithm> -duration <years> -srk-ca <y/n>"
echo Options:
echo -kl: -use-ecc = y then Supported key lengths: p256, p384, p521
echo : -use-ecc = n then Supported key lengths: 2048, 3072, 4096
echo -da: Supported digest algorithms: sha256, sha384, sha512
echo.
echo "%scriptName% -h | --help : This text"
echo.
exit /B
:PROCESS_CA_KEY
if %interactive%==y (
set /P existing_ca="Do you want to use an existing CA key (y/n)?: "
)
if %existing_ca%==n goto KEY_TYPE
if %interactive%==y (
set /P ca_key="Enter CA key name: "
set /P ca_cert="Enter CA certificate name: "
)
:KEY_TYPE
if %interactive%==y (
set /P use_ecc="Do you want to use Elliptic Curve Cryptography (y/n)?: "
)
if %use_ecc%==n goto KEY_LENGTH_RSA
:KEY_LENGTH_ECC
if %interactive%==y (
set /P kl="Enter length for elliptic curve to be used for PKI tree (possible values p256, p384, p521): "
)
:: Confirm that a valid key length has been entered
if %kl%==p256 set "cn=prime256v1" & goto DIGEST_ALGO
if %kl%==p384 set "cn=secp384r1" & goto DIGEST_ALGO
if %kl%==p521 set "cn=secp521r1" & goto DIGEST_ALGO
echo Invalid key length. Supported key lengths: 256, 384, 521
exit /B
:KEY_LENGTH_RSA
if %interactive%==y (
set /P kl="Enter key length in bits for PKI tree: "
)
:: Confirm that a valid key length has been entered
if %kl%==2048 goto DIGEST_ALGO
if %kl%==3072 goto DIGEST_ALGO
if %kl%==4096 goto DIGEST_ALGO
echo Invalid key length. Supported key lengths: 2048, 3072, 4096
exit /B
:DIGEST_ALGO
if %interactive%==y (
set /P da="Enter the digest algorithm to use: "
)
:: Confirm that a valid digest algorithm has been entered
if %da%==sha256 goto KEY_DURATION
if %da%==sha384 goto KEY_DURATION
if %da%==sha512 goto KEY_DURATION
echo Invalid digest algorithm. Supported digest algorithms: sha256, sha384, sha512
exit /B
:KEY_DURATION
if %interactive%==y (
set /P duration="Enter PKI tree duration (years): "
)
:: Compute validity period
set /A val_period=%duration%*365
:NUMBER_OF_SRKS
:: set /P num_srk="How many Super Root Keys should be generated? "
set num_srk=4
set /A max=%num_srk%+1
:: Check that 0 < num_srk <= 4 (Max. number of SRKs)
if %num_srk%==1 goto CA_SRK
if %num_srk%==2 goto CA_SRK
if %num_srk%==3 goto CA_SRK
if %num_srk%==4 goto CA_SRK
echo The number of SRKs generated must be between 1 and 4
exit /B
:CA_SRK
:: Check if SRKs should be generated as CA certs or user certs
if %interactive%==y (
set /P srk_ca="Do you want the SRK certificates to have the CA flag set? (y/n)?: "
)
:SERIAL
:: Check that the file "serial" is present, if not create it:
if exist "serial" goto KEY_PASS
echo 12345678 > serial
echo A default 'serial' file was created!
:KEY_PASS
:: Check that the file "key_pass.txt" is present, if not create it with default user/pwd:
if exist "key_pass.txt" goto OPENSSL_INIT
echo test> key_pass.txt
echo test>> key_pass.txt
echo A default file 'key_pass.txt' was created with password = test!
:OPENSSL_INIT
:: Convert file in Unix format for OpenSSL 1.0.2
convlb key_pass.txt
:: The following is required otherwise OpenSSL complains
if exist index.txt del /F index.txt
if exist index.txt.attr del /F index.txt.attr
type nul > index.txt
echo unique_subject = no > index.txt.attr
set OPENSSL_CONF=..\\ca\\openssl.cnf
:GEN_CA
if %existing_ca%==y goto GEN_SRK
:: Generate CA key and certificate
:: -------------------------------
echo.
echo +++++++++++++++++++++++++++++++++++++
echo + Generating CA key and certificate +
echo +++++++++++++++++++++++++++++++++++++
echo.
if %use_ecc%==n (
set ca_key=CA1_%da%_%kl%_65537_v3_ca_key
set ca_cert=..\\crts\\CA1_%da%_%kl%_65537_v3_ca_crt
set ca_subj_req=/CN=CA1_%da%_%kl%_65537_v3_ca/
set ca_key_type=rsa:%kl%
) else (
openssl ecparam -out ec-%cn%.pem -name %cn%
set ca_key=CA1_%da%_%cn%_v3_ca_key
set ca_cert=..\\crts\\CA1_%da%_%cn%_v3_ca_crt
set ca_subj_req=/CN=CA1_%da%_%cn%_v3_ca/
set ca_key_type=ec:ec-%cn%.pem
)
openssl req -newkey %ca_key_type% -passout file:key_pass.txt ^
-%da% ^
-subj %ca_subj_req% ^
-x509 -extensions v3_ca ^
-keyout temp_ca.pem ^
-out %ca_cert%.pem ^
-days %val_period%
:: Generate CA key in PKCS #8 format - both PEM and DER
openssl pkcs8 -passin file:key_pass.txt -passout file:key_pass.txt ^
-topk8 -inform PEM -outform DER -v2 des3 ^
-in temp_ca.pem ^
-out %ca_key%.der
openssl pkcs8 -passin file:key_pass.txt -passout file:key_pass.txt ^
-topk8 -inform PEM -outform PEM -v2 des3 ^
-in temp_ca.pem ^
-out %ca_key%.pem
:: Convert CA Certificate to DER format
openssl x509 -inform PEM -outform DER -in %ca_cert%.pem -out %ca_cert%.der
:: Cleanup
del /F temp_ca.pem
:GEN_SRK
if %srk_ca%==y goto GEN_SRK_SGK
:: Generate SRK keys and certificates (non-CA)
:: SRKs suitable for signing code/data
:: -------------------------------------------
:: SRK Loop index
set /A i=1
:LOOP_SRK
echo.
echo ++++++++++++++++++++++++++++++++++++++++
echo + Generating SRK key and certificate %i% +
echo ++++++++++++++++++++++++++++++++++++++++
echo.
if %use_ecc%==n (
:: Generate SRK key
openssl genrsa -des3 -passout file:key_pass.txt -f4 ^
-out temp_srk.pem %kl%
set srk_subj_req=/CN=SRK%i%_%da%_%kl%_65537_v3_usr/
set srk_crt=..\\crts\\SRK%i%_%da%_%kl%_65537_v3_usr_crt
set srk_key=SRK%i%_%da%_%kl%_65537_v3_usr_key
) else (
:: Generate Elliptic Curve parameters:
openssl ecparam -out temp_srk.pem -name %cn% -genkey
:: Generate SRK key
openssl ec -in temp_srk.pem -des3 -passout file:key_pass.txt ^
-out temp_srk.pem
set srk_subj_req=/CN=SRK%i%_%da%_%cn%_v3_usr/
set srk_crt=..\\crts\\SRK%i%_%da%_%cn%_v3_usr_crt
set srk_key=SRK%i%_%da%_%cn%_v3_usr_key
)
:: Generate SRK certificate signing request
openssl req -new -batch -passin file:key_pass.txt ^
-subj %srk_subj_req% ^
-key temp_srk.pem ^
-out temp_srk_req.pem
:: Generate SRK certificate (this is a CA cert)
openssl ca -batch -passin file:key_pass.txt ^
-md %da% -outdir . ^
-in temp_srk_req.pem ^
-cert %ca_cert%.pem ^
-keyfile %ca_key%.pem ^
-extfile ..\\ca\\v3_usr.cnf ^
-out %srk_crt%.pem ^
-days %val_period%
:: Convert SRK Certificate to DER format
openssl x509 -inform PEM -outform DER ^
-in %srk_crt%.pem ^
-out %srk_crt%.der
:: Generate SRK key in PKCS #8 format - both PEM and DER
openssl pkcs8 -passin file:key_pass.txt ^
-passout file:key_pass.txt ^
-topk8 -inform PEM -outform DER -v2 des3 ^
-in temp_srk.pem ^
-out %srk_key%.der
openssl pkcs8 -passin file:key_pass.txt ^
-passout file:key_pass.txt ^
-topk8 -inform PEM -outform PEM -v2 des3 ^
-in temp_srk.pem ^
-out %srk_key%.pem
:: Cleanup
del /F temp_srk.pem temp_srk_req.pem
set /A i+=1
if %i%==%max% exit /B
goto LOOP_SRK
:GEN_SRK_SGK
:: Generate SRK keys and certficiates (CA)
:: Generate SGK keys and certificates (non-CA)
:: SGKs suitable for signing code/data
:: -------------------------------------------
:: SRK Loop index
set /A i=1
:LOOP_SRK_SGK
echo.
echo ++++++++++++++++++++++++++++++++++++++++
echo + Generating SRK key and certificate %i% +
echo ++++++++++++++++++++++++++++++++++++++++
echo.
if %use_ecc%==n (
:: Generate SRK key
openssl genrsa -des3 -passout file:key_pass.txt -f4 ^
-out ./temp_srk.pem %kl%
set srk_subj_req=/CN=SRK%i%_%da%_%kl%_65537_v3_ca/
set srk_crt=..\\crts\\SRK%i%_%da%_%kl%_65537_v3_ca_crt
set srk_key=SRK%i%_%da%_%kl%_65537_v3_ca_key
) else (
:: Generate Elliptic Curve parameters:
openssl ecparam -out temp_srk.pem -name %cn% -genkey
:: Generate SRK key
openssl ec -in temp_srk.pem -des3 -passout file:key_pass.txt ^
-out temp_srk.pem
set srk_subj_req=/CN=SRK%i%_%da%_%cn%_v3_ca/
set srk_crt=..\\crts\\SRK%i%_%da%_%cn%_v3_ca_crt
set srk_key=SRK%i%_%da%_%cn%_v3_ca_key
)
:: Generate SRK certificate signing request
openssl req -new -batch -passin file:key_pass.txt ^
-subj %srk_subj_req% ^
-key temp_srk.pem ^
-out temp_srk_req.pem
:: Generate SRK certificate (this is a CA cert)
openssl ca -batch -passin file:key_pass.txt ^
-md %da% -outdir . ^
-in temp_srk_req.pem ^
-cert %ca_cert%.pem ^
-keyfile %ca_key%.pem ^
-extfile ..\\ca\\v3_ca.cnf ^
-out %srk_crt%.pem ^
-days %val_period%
:: Convert SRK Certificate to DER format
openssl x509 -inform PEM -outform DER ^
-in %srk_crt%.pem ^
-out %srk_crt%.der
:: Generate SRK key in PKCS #8 format - both PEM and DER
openssl pkcs8 -passin file:key_pass.txt ^
-passout file:key_pass.txt ^
-topk8 -inform PEM -outform DER -v2 des3 ^
-in temp_srk.pem ^
-out %srk_key%.der
openssl pkcs8 -passin file:key_pass.txt ^
-passout file:key_pass.txt ^
-topk8 -inform PEM -outform PEM -v2 des3 ^
-in temp_srk.pem ^
-out %srk_key%.pem
:: Cleanup
del /F temp_srk.pem temp_srk_req.pem
echo.
echo ++++++++++++++++++++++++++++++++++++++++
echo + Generating SGK key and certificate %i% +
echo ++++++++++++++++++++++++++++++++++++++++
echo.
if %use_ecc%==n (
set srk_crt_i=..\\crts\\SRK%i%_%da%_%kl%_65537_v3_ca_crt.pem
set srk_key_i=SRK%i%_%da%_%kl%_65537_v3_ca_key.pem
:: Generate key
openssl genrsa -des3 -passout file:key_pass.txt -f4 ^
-out ./temp_sgk.pem %kl%
set sgk_subj_req=/CN=SGK%i%_1_%da%_%kl%_65537_v3_usr/
set sgk_crt=..\\crts\\SGK%i%_1_%da%_%kl%_65537_v3_usr_crt
set sgk_key=SGK%i%_1_%da%_%kl%_65537_v3_usr_key
) else (
set srk_crt_i=..\\crts\\SRK%i%_%da%_%cn%_v3_ca_crt.pem
set srk_key_i=SRK%i%_%da%_%cn%_v3_ca_key.pem
:: Generate Elliptic Curve parameters:
openssl ecparam -out temp_sgk.pem -name %cn% -genkey
:: Generate key
openssl ec -in temp_sgk.pem -des3 -passout file:key_pass.txt ^
-out temp_sgk.pem
set sgk_subj_req=/CN=SGK%i%_1_%da%_%cn%_v3_usr/
set sgk_crt=..\\crts\\SGK%i%_1_%da%_%cn%_v3_usr_crt
set sgk_key=SGK%i%_1_%da%_%cn%_v3_usr_key
)
:: Generate SGK certificate signing request
openssl req -new -batch -passin file:key_pass.txt ^
-subj %sgk_subj_req% ^
-key temp_sgk.pem ^
-out temp_sgk_req.pem
:: Generate SGK certificate (this is a user cert)
openssl ca -batch -md %da% -outdir . ^
-passin file:key_pass.txt ^
-in temp_sgk_req.pem ^
-cert %srk_crt_i% ^
-keyfile %srk_key_i% ^
-extfile ..\\ca\\v3_usr.cnf ^
-out %sgk_crt%.pem ^
-days %val_period%
:: Convert SGK Certificate to DER format
openssl x509 -inform PEM -outform DER ^
-in %sgk_crt%.pem ^
-out %sgk_crt%.der
:: Generate SGK key in PKCS #8 format - both PEM and DER
openssl pkcs8 -passin file:key_pass.txt -passout file:key_pass.txt ^
-topk8 -inform PEM -outform DER -v2 des3 ^
-in temp_sgk.pem ^
-out %sgk_key%.der
openssl pkcs8 -passin file:key_pass.txt -passout file:key_pass.txt ^
-topk8 -inform PEM -outform PEM -v2 des3 ^
-in temp_sgk.pem ^
-out %sgk_key%.pem
:: Cleanup
del /F temp_sgk.pem temp_sgk_req.pem
set /A i+=1
if %i%==%max% exit /B
goto LOOP_SRK_SGK
|