Tagged Questions

10
votes
2answers
11k views

How can I install a certificate into the local machine store programmatically using c#?

I have a certificate generated via MakeCert. I want to use this certificate for WCF message security using PeerTrust. How can I programmatically install the certificate into the "trusted people" ...
1
vote
0answers
40 views

How to use makecert to create a X509 certificate accepted by WCF

Can anyone provide me with an example on how to create a self signed certificate, which would be accepted by the following code: ServiceHost svh = new ServiceHost(typeof(MyClass)); ...
0
votes
3answers
56 views

c# proxy, generating certificate for https traffic?

I'm trying to get this code running with https: http://www.codeproject.com/Articles/93301/Implementing-a-Multithreaded-HTTP-HTTPS-Debugging It says on the bottom of the page that I need to make a new ...
0
votes
2answers
72 views

How to run command in the process which is executed with admin rights?

I want to create a self signed certificate and install it using through c# program. I use makecert to make certificate i run it as administrator and i pass command in the ProcessStartInfo.argument but ...
0
votes
0answers
160 views

How to self generate certificate SHA-256?

I use Bouncy Castle libraries in C# to sign with SHA-256, and I'd like to use them in a test of a self generated certificate instead of a smartcard reader. Using the self certificate used before, ...
0
votes
0answers
217 views

How do I code makecert “-sky exchange” and “-sky signature” in C#

I need to programatically create the equivalant keys in a .NET application... makecert -r -pe -a sha1 -n "CN=MyName" -ss my -sr CurrentUser -sky exchange makecert -r -pe -a sha1 -n "CN=MyName" -ss ...