Skip to content

Commit 7adced1

Browse files
committed
path to cert?
1 parent 86f2ec8 commit 7adced1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BenchmarksApps/TLS/HttpSys/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ void ConfigureHttpSysForMutualTls()
109109
{
110110
Console.WriteLine("Setting up mTLS for http.sys");
111111

112-
var certificate = new X509Certificate2("testCert.pfx", "testPassword", X509KeyStorageFlags.MachineKeySet | X509KeyStorageFlags.Exportable);
112+
var certificate = new X509Certificate2("../testCert.pfx", "testPassword", X509KeyStorageFlags.MachineKeySet | X509KeyStorageFlags.Exportable);
113113
using (var store = new X509Store(StoreName.My, StoreLocation.LocalMachine))
114114
{
115115
store.Open(OpenFlags.ReadWrite);

0 commit comments

Comments
 (0)