mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
15 lines
438 B
PowerShell
15 lines
438 B
PowerShell
|
# 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;
|
||
|
|
||
|
$params['Subject'] = 'CN=Bitwarden Data Protection Dev';
|
||
|
New-SelfSignedCertificate @params;
|