1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00
bitwarden-server/dev/create_certificates_windows.ps1
Justin Baur 8d36dfa5d3
Make development easier (#3504)
* Remove Certificate Steps from Setup

* Add Helpers to VSCode Tasks

* Force Ephermal Key in Integration Tests

* Add Property to Interface
2023-12-08 15:14:49 -05:00

12 lines
345 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;