mirror of
https://github.com/jakeswenson/BitBetter.git
synced 2025-07-13 06:53:25 +00:00
Add comments
This commit is contained in:
parent
417e1dd132
commit
97d2869547
|
@ -1,16 +1,22 @@
|
||||||
|
# get the basic openssl binary path
|
||||||
$opensslbinary = "$Env:Programfiles\OpenSSL-Win64\bin\openssl.exe"
|
$opensslbinary = "$Env:Programfiles\OpenSSL-Win64\bin\openssl.exe"
|
||||||
|
|
||||||
|
# if openssl is not installed attempt to install it
|
||||||
if (!(Get-Command $opensslbinary -errorAction SilentlyContinue))
|
if (!(Get-Command $opensslbinary -errorAction SilentlyContinue))
|
||||||
{
|
{
|
||||||
winget install openssl
|
winget install openssl
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# if previous keys exist, remove them
|
||||||
if (Test-Path "$pwd\.keys")
|
if (Test-Path "$pwd\.keys")
|
||||||
{
|
{
|
||||||
Remove-Item "$pwd\.keys" -Recurse -Force
|
Remove-Item "$pwd\.keys" -Recurse -Force
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# create new directory
|
||||||
New-item -ItemType Directory -Path "$pwd\.keys"
|
New-item -ItemType Directory -Path "$pwd\.keys"
|
||||||
|
|
||||||
|
# generate actual keys
|
||||||
Invoke-Expression "& '$opensslbinary' req -x509 -newkey rsa:4096 -keyout `"$pwd\.keys\key.pem`" -out `"$pwd\.keys\cert.cert`" -days 36500 -subj '/CN=www.mydom.com/O=My Company Name LTD./C=US' -outform DER -passout pass:test"
|
Invoke-Expression "& '$opensslbinary' req -x509 -newkey rsa:4096 -keyout `"$pwd\.keys\key.pem`" -out `"$pwd\.keys\cert.cert`" -days 36500 -subj '/CN=www.mydom.com/O=My Company Name LTD./C=US' -outform DER -passout pass:test"
|
||||||
Invoke-Expression "& '$opensslbinary' x509 -inform DER -in `"$pwd\.keys\cert.cert`" -out `"$pwd\.keys\cert.pem`""
|
Invoke-Expression "& '$opensslbinary' x509 -inform DER -in `"$pwd\.keys\cert.cert`" -out `"$pwd\.keys\cert.pem`""
|
||||||
Invoke-Expression "& '$opensslbinary' pkcs12 -export -out `"$pwd\.keys\cert.pfx`" -inkey `"$pwd\.keys\key.pem`" -in `"$pwd\.keys\cert.pem`" -passin pass:test -passout pass:test"
|
Invoke-Expression "& '$opensslbinary' pkcs12 -export -out `"$pwd\.keys\cert.pfx`" -inkey `"$pwd\.keys\key.pem`" -in `"$pwd\.keys\cert.pem`" -passin pass:test -passout pass:test"
|
Loading…
Reference in New Issue
Block a user