-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
generate pfx and update firewall policy tests accordingly
- Loading branch information
Showing
4 changed files
with
11 additions
and
75 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
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,4 +1,11 @@ | ||
# How Key and Certificate was generated | ||
# How Certificates were generated | ||
|
||
## How Key and Certificate was generated | ||
```bash | ||
openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem | ||
``` | ||
|
||
## How PFX was generated from above Key and Certificate | ||
```bash | ||
openssl pkcs12 -export -out certificate.pfx -inkey key.pem -in cert.pem | ||
``` |
This file was deleted.
Oops, something went wrong.
Binary file not shown.