You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
345 B
11 lines
345 B
# Script for generating and installing the Bitwarden development certificates on Windows. |
|
|
|
$params = @{ |
|
'KeyAlgorithm' = 'RSA'; |
|
'KeyLength' = 4096; |
|
'NotAfter' = (Get-Date).AddDays(3650); |
|
'CertStoreLocation' = 'Cert:\CurrentUser\My'; |
|
}; |
|
|
|
$params['Subject'] = 'CN=Bitwarden Identity Server Dev'; |
|
New-SelfSignedCertificate @params;
|
|
|