forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change default key details to be more obviously unspecified. Reported-by: Linus Torvalds <[email protected]> Signed-off-by: David Howells <[email protected]> Acked-by: James Morris <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,9 +119,9 @@ Most notably, in the x509.genkey file, the req_distinguished_name section | |
should be altered from the default: | ||
|
||
[ req_distinguished_name ] | ||
O = Magrathea | ||
CN = Glacier signing key | ||
emailAddress = [email protected] | ||
#O = Unspecified company | ||
CN = Build time autogenerated kernel key | ||
#emailAddress = [email protected] | ||
|
||
The generated RSA key size can also be set with: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -197,9 +197,9 @@ x509.genkey: | |
@echo >>x509.genkey "x509_extensions = myexts" | ||
@echo >>x509.genkey | ||
@echo >>x509.genkey "[ req_distinguished_name ]" | ||
@echo >>x509.genkey "O = Magrathea" | ||
@echo >>x509.genkey "CN = Glacier signing key" | ||
@echo >>x509.genkey "emailAddress = [email protected]" | ||
@echo >>x509.genkey "#O = Unspecified company" | ||
@echo >>x509.genkey "CN = Build time autogenerated kernel key" | ||
@echo >>x509.genkey "#emailAddress = [email protected]" | ||
@echo >>x509.genkey | ||
@echo >>x509.genkey "[ myexts ]" | ||
@echo >>x509.genkey "basicConstraints=critical,CA:FALSE" | ||
|