You've already forked DasharoModulePkg
mirror of
https://github.com/Dasharo/DasharoModulePkg.git
synced 2026-03-06 14:50:17 -08:00
9da88d69f0
Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com>
10 lines
604 B
Plaintext
10 lines
604 B
Plaintext
# PK certificate generation
|
|
|
|
* Do not save private key for re-usage.
|
|
* Generate a RSA 2048 x509 certificate
|
|
* Exponent should be 65537
|
|
* Microsoft certificates can be found here: https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/windows-secure-boot-key-creation-and-management-guidance
|
|
* Date of downloading Microsoft certificates and DBX: 16-11-2023
|
|
|
|
openssl req -outform DER -newkey rsa:2048 -keyout /dev/null -passout file:<(head -c 40 /dev/urandom) -x509 -days 1825 -out pk.crt -subj "/C=PL/ST=Pomerania/L=Gdansk/O=3mdeb Sp. z o.o./CN=Dasharo PK/emailAddress=contact@dasharo.com"
|