makecert.exe is a command line X.509 digital certificate creation tool included with Microsoft Visual Studio. The certificates created are for testing purposes only.

learn more… | top users | synonyms

1
vote
2answers
358 views

Using HTTPS with Monotouch and WCF

we have an application running with monotouch on the iPhone. At the moment we're using BasicHttpBinding to connect to a WCF service. We're now in the process to making the connection secure, using ...
7
votes
1answer
2k 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)); ...
2
votes
1answer
408 views

WCF – SSL – Client authentication - Can’t implement it on Windows 7, while I can on Windows XP

I’m trying to make a wcf client and server (self hosted) with ssl (transport security) both ways - server certificate and client certificate. In windows XP everything works, but in Windows 7 it ...
2
votes
1answer
1k views

Internet Explorer blocks self-signed ActiveX

I have create a self-signed certificate and signed my ActiveX. I followed the steps in this topic. ...
1
vote
1answer
202 views

signed exe coming up with publisher unknown with makecert

I am attempting, for internal use at the moment, setup a self installing exe which is signed and comes up with our company as the publisher and not "Unknown". I have executed the following steps: ...
1
vote
1answer
474 views

Make exportable private key with makecert

I need to generate a cerificate for my service given a trusted root certificate. I tried to generate a certificate with private key: makecert -pe -sk Esb -iv root.pvk -n "CN=localhost" -ic root.cer ...
0
votes
1answer
9 views

How to import a certificate with private key on Certificate Management Tool

By now the only way i'm able to import a certificate on Certificate Management Tool is by having a .pfx file. I'm using Makecert.exe utility to generate certificates. First Step - I generate a ...
0
votes
1answer
63 views

How to locate new certification using Certutil?

I need to create a new cert and then locate it to obtain the serial number (to use it later to get the public and private keys). If I make a new certificate with makecert utility from Microsoft SDK's ...
0
votes
1answer
141 views

Batch file: Open cmd, run VS Command Prompt, execute Makecert

I need to do this in a batch file: Open cmd Run VS Command Prompt via cmd Execute this command "makecert -sv SignRoot.pvk -cy authority -r sha1 -a -n \"CN=Certificate\" -ss my -sr localmachine ...
0
votes
1answer
38 views

Change the Information on a Self Signed Generated Certificate

I have previously generated a certificate using the Visual Studio "makecert" program. Is there any way of being able to modify the Name, Email, Address values on the certificate? Currently the ...
0
votes
1answer
100 views

Windows Communication Foundation with x509 and Compact Framework 3.5 Max Keylength

I am using Windows Communication Foundation with x509 message layer security to communicate with a windows compact framework 3.5 device. I am using makecert to create the certificates. Does anyone ...
0
votes
1answer
320 views

How can use a X.509 certificate created on another computer?

I need to encrypt an XML file with a x509 certificate on one computer and be able to decrypt it with the same certificate on another computer. It doesn't seem to work for me like Microsoft suggests: ...
0
votes
1answer
465 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
1answer
423 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 ...
3
votes
0answers
2k views

Can't create a key of the Subject <'MyCAContainerName'>

using makecert i have written the commade: makecert -pe -n "CN=Myauthority" -sr localmachine -ss Root -a sha256 -cy authority -r -sk MyCAContainerName -sky exchange -sp "Microsoft RSA Schannel ...
1
vote
0answers
59 views

Having trouble generating test X509Certificate

I'm having problems creating a test X509Certificate in my store that I can use in WCF. All of the certificates I create have the same result when I try to use it in the WCF channel factory - "The ...
0
votes
0answers
7 views

Makecert command giving error on -e

I am facing an issue. I ran the following commands to generate certificate First Command: C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin>makecert -n "CN=TEST00019" -s r LocalMachine -ss Root ...
0
votes
0answers
12 views

Remove certificate from cmd

I create certficate from command line as follows: makecert -r -pe -n "CN=WWW.TEST.COM" -b 01/01/2005 -e 01/01/2020 -sky exchange -ss my how can I remove it using command line?
0
votes
0answers
39 views

makecert How to create self signed Root Certificate and Signed Certificate

I need to generate a self signed Root Certificate which then can be used to generate N number of self signed X509V2 Certificates (sort of PKI). Could someone please suggest whether/how this can be ...
0
votes
0answers
57 views

Encrypting a string on server A and decrypting it on server B with the same certificate not working

We are using a certificate for encrypting and decrypting data using the RSACryptoServiceProvider. We have also exported the same certificate to another server. In both instances, encryption and ...
0
votes
0answers
111 views

MakeCert.exe - Weird behavior

I have a certificate file (.cer) and associated password file (.pvk). I can create and install this to Root. When I run makecert to create a new certificate that is based on the .cer and .pvk files ...