Import certificate with private key programmatically

后端 未结 3 1665
青春惊慌失措
青春惊慌失措 2021-01-31 22:12

I\'m trying to use the HttpListener class in a C# application to have a mini webserver serve content over SSL. In order to do this I need to use the httpcfg tool. I have a .pf

相关标签:
3条回答
  • 2021-01-31 23:02

    Is this a 2 way SSL? If it is then did you send over a SSL Certificate Request file generated on your machine? This Certificate Request file will be used to create the SSL and they together form a public private key pair.

    Also did you try assigning the cert permission for the user account that is being used to run the web app? You can do this by using the Microsoft WSE 3.0 tool.

    0 讨论(0)
  • 2021-01-31 23:13

    Ok, I figured it out. It had to do with the key storage parameters for the certificate object. For anyone else that runs into this problem, make sure you construct your X509Certificate2 objects that you are adding to the store using the X509KeyStorageFlags.PersistKeySet and X509KeyStorageFlags.MachineKeySet flags. This will force the private key to persist in the machine key set location which is required by HttpApi (HttpListener wraps this).

    0 讨论(0)
  • 2021-01-31 23:13

    Not exactly the answer to your question, but here for reference of others going down this path:

    Here is a link to a MS chat that gives sample C# code to do what httpcfg does, thus eliminating the need for the tool on deployment.

    0 讨论(0)
提交回复
热议问题