forked from dotnet/aspnetcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDevelopmentCertificate.cs
42 lines (34 loc) · 1.72 KB
/
DevelopmentCertificate.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.IO;
using Microsoft.AspNetCore.Certificates.Generation;
namespace Templates.Test.Helpers;
public readonly struct DevelopmentCertificate
{
public DevelopmentCertificate(string certificatePath, string certificatePassword, string certificateThumbprint)
{
CertificatePath = certificatePath;
CertificatePassword = certificatePassword;
CertificateThumbprint = certificateThumbprint;
}
public readonly string CertificatePath { get; }
public readonly string CertificatePassword { get; }
public readonly string CertificateThumbprint { get; }
public static DevelopmentCertificate Create(string workingDirectory)
{
var certificatePath = Path.Combine(workingDirectory, $"{Guid.NewGuid()}.pfx");
var certificatePassword = Guid.NewGuid().ToString();
var certificateThumbprint = EnsureDevelopmentCertificates(certificatePath, certificatePassword);
return new DevelopmentCertificate(certificatePath, certificatePassword, certificateThumbprint);
}
private static string EnsureDevelopmentCertificates(string certificatePath, string certificatePassword)
{
var now = DateTimeOffset.Now;
var manager = CertificateManager.Instance;
var certificate = manager.CreateAspNetCoreHttpsDevelopmentCertificate(now, now.AddYears(1));
var certificateThumbprint = certificate.Thumbprint;
CertificateManager.ExportCertificate(certificate, path: certificatePath, includePrivateKey: true, certificatePassword, CertificateKeyExportFormat.Pfx);
return certificateThumbprint;
}
}