[PR #787] [MERGED] Add support for PEM certificates #1085

Closed
opened 2025-12-29 08:34:36 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/wiremock/WireMock.Net/pull/787
Author: @StefH
Created: 8/11/2022
Status: Merged
Merged: 8/16/2022
Merged by: @StefH

Base: masterHead: pem


📝 Commits (10+)

📊 Changes

17 files changed (+352 additions, -129 deletions)

View changed files

📝 WireMock.Net Solution.sln (+7 -0)
📝 WireMock.Net Solution.sln.DotSettings (+2 -0)
examples/WireMock.Net.Console.NET6.WithCertificate/HowTo.txt (+16 -0)
examples/WireMock.Net.Console.NET6.WithCertificate/Program.cs (+52 -0)
examples/WireMock.Net.Console.NET6.WithCertificate/WireMock.Net.Console.NET6.WithCertificate.csproj (+25 -0)
examples/WireMock.Net.Console.NET6.WithCertificate/cert-rsa.pem (+28 -0)
examples/WireMock.Net.Console.NET6.WithCertificate/cert.pem (+13 -0)
examples/WireMock.Net.Console.NET6.WithCertificate/private-key-rsa.pem (+39 -0)
examples/WireMock.Net.Console.NET6.WithCertificate/private-key.pem (+5 -0)
examples/WireMock.Net.Console.NET6.WithCertificate/public-key-rsa.pem (+11 -0)
examples/WireMock.Net.Console.NET6.WithCertificate/public-key.pem (+4 -0)
📝 src/WireMock.Net/HttpsCertificate/CertificateLoader.cs (+37 -13)
📝 src/WireMock.Net/Owin/AspNetCoreSelfHost.NETStandard.cs (+0 -1)
📝 src/WireMock.Net/Owin/AspNetCoreSelfHost.NETStandard13.cs (+39 -39)
📝 src/WireMock.Net/Owin/AspNetCoreSelfHost.cs (+1 -1)
📝 src/WireMock.Net/Owin/IWireMockMiddlewareOptions.cs (+29 -30)
📝 src/WireMock.Net/Owin/WireMockMiddlewareOptions.cs (+44 -45)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/wiremock/WireMock.Net/pull/787 **Author:** [@StefH](https://github.com/StefH) **Created:** 8/11/2022 **Status:** ✅ Merged **Merged:** 8/16/2022 **Merged by:** [@StefH](https://github.com/StefH) **Base:** `master` ← **Head:** `pem` --- ### 📝 Commits (10+) - [`200aa53`](https://github.com/wiremock/WireMock.Net/commit/200aa53ab631946f7e3a8fd896895581e6fe2226) Support PEM - [`575cd48`](https://github.com/wiremock/WireMock.Net/commit/575cd480761deb474a85d99c2a5260625db6ed01) net5 - [`30d6a61`](https://github.com/wiremock/WireMock.Net/commit/30d6a61b2736a046bb1724c7ab5b3424df155ee0) 31 - [`ac8400e`](https://github.com/wiremock/WireMock.Net/commit/ac8400e66618329fcae4faa019a26d312f8d587f) txt - [`379cc55`](https://github.com/wiremock/WireMock.Net/commit/379cc55c209c533a030ef578090974c0395a9201) FILE - [`5a916c0`](https://github.com/wiremock/WireMock.Net/commit/5a916c03753f2a44e97ac1e328e7348aa22b2d77) new - [`e3f4207`](https://github.com/wiremock/WireMock.Net/commit/e3f42076961c71d5517cccc21db0f19c6d9273ee) Fixed - [`bd53e7e`](https://github.com/wiremock/WireMock.Net/commit/bd53e7e69e9910e6c7230bc31569cfe68a261f43) . - [`9c97134`](https://github.com/wiremock/WireMock.Net/commit/9c97134775b480b5ee6dceb089e27a76a2f5cb7d) . - [`2ec4af9`](https://github.com/wiremock/WireMock.Net/commit/2ec4af9b66a8e3f7ff7f2285644c8e3c806255ce) RSA ### 📊 Changes **17 files changed** (+352 additions, -129 deletions) <details> <summary>View changed files</summary> 📝 `WireMock.Net Solution.sln` (+7 -0) 📝 `WireMock.Net Solution.sln.DotSettings` (+2 -0) ➕ `examples/WireMock.Net.Console.NET6.WithCertificate/HowTo.txt` (+16 -0) ➕ `examples/WireMock.Net.Console.NET6.WithCertificate/Program.cs` (+52 -0) ➕ `examples/WireMock.Net.Console.NET6.WithCertificate/WireMock.Net.Console.NET6.WithCertificate.csproj` (+25 -0) ➕ `examples/WireMock.Net.Console.NET6.WithCertificate/cert-rsa.pem` (+28 -0) ➕ `examples/WireMock.Net.Console.NET6.WithCertificate/cert.pem` (+13 -0) ➕ `examples/WireMock.Net.Console.NET6.WithCertificate/private-key-rsa.pem` (+39 -0) ➕ `examples/WireMock.Net.Console.NET6.WithCertificate/private-key.pem` (+5 -0) ➕ `examples/WireMock.Net.Console.NET6.WithCertificate/public-key-rsa.pem` (+11 -0) ➕ `examples/WireMock.Net.Console.NET6.WithCertificate/public-key.pem` (+4 -0) 📝 `src/WireMock.Net/HttpsCertificate/CertificateLoader.cs` (+37 -13) 📝 `src/WireMock.Net/Owin/AspNetCoreSelfHost.NETStandard.cs` (+0 -1) 📝 `src/WireMock.Net/Owin/AspNetCoreSelfHost.NETStandard13.cs` (+39 -39) 📝 `src/WireMock.Net/Owin/AspNetCoreSelfHost.cs` (+1 -1) 📝 `src/WireMock.Net/Owin/IWireMockMiddlewareOptions.cs` (+29 -30) 📝 `src/WireMock.Net/Owin/WireMockMiddlewareOptions.cs` (+44 -45) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 08:34:36 +01:00
adam closed this issue 2025-12-29 08:34:37 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/WireMock.Net#1085