Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Tools/Certificates/Generators/RsaCertificateGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ public X509Certificate2 CreateCertificate(
var certificate = request.CreateSelfSigned(DateTimeOffset.UtcNow, DateTimeOffset.UtcNow.AddYears(1));

File.WriteAllBytes(path, certificate.Export(X509ContentType.Pfx, password));

var publicKeyPem = rsa.ExportRSAPublicKeyPem();
File.WriteAllText(publicKeyPath, publicKeyPem);

var privateKeyPem = rsa.ExportRSAPrivateKeyPem();
File.WriteAllText(privateKeyPath, privateKeyPem);

return certificate;
}
}
Expand Down