-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #347 from OpenTouryoProject/develop
Release work ( ~ October 1, 2019)
- Loading branch information
Showing
395 changed files
with
16,198 additions
and
9,340 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Windows batch files want to use CRLF by default. | ||
*.bat text eol=crlf | ||
|
||
# Visual Studio files want to use CRLF by default. |
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
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
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
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
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
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 |
---|---|---|
@@ -1,6 +1,16 @@ | ||
openssl ecparam -list_curves | ||
|
||
openssl ecparam -out private-key.pem -name prime256v1 -genkey | ||
openssl req -new -key private-key.pem > csr.csr | ||
openssl x509 -in csr.csr -days 365000 -req -signkey private-key.pem > _SHA256ECDSA.cer | ||
openssl pkcs12 -export -out _SHA256ECDSA.pfx -inkey private-key.pem -in _SHA256ECDSA.cer | ||
:openssl pkcs12 -in _SHA256ECDSA.pfx -out _SHA256ECDSA.cer -nokeys -clcerts | ||
openssl pkcs12 -export -inkey private-key.pem -in _SHA256ECDSA.cer > _SHA256ECDSA.pfx | ||
|
||
openssl ecparam -out private-key.pem -name secp384r1 -genkey | ||
openssl req -new -key private-key.pem > csr.csr | ||
openssl x509 -in csr.csr -days 365000 -req -signkey private-key.pem > _SHA384ECDSA.cer | ||
openssl pkcs12 -export -inkey private-key.pem -in _SHA384ECDSA.cer > _SHA384ECDSA.pfx | ||
|
||
openssl ecparam -out private-key.pem -name secp521r1 -genkey | ||
openssl req -new -key private-key.pem > csr.csr | ||
openssl x509 -in csr.csr -days 365000 -req -signkey private-key.pem > _SHA512ECDSA.cer | ||
openssl pkcs12 -export -inkey private-key.pem -in _SHA512ECDSA.cer > _SHA512ECDSA.pfx |
Oops, something went wrong.