Tagged Questions

9
votes
2answers
10k 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" ...
4
votes
1answer
781 views

Setting Key Usage attributes with Makecert

Is it possible to set Key Usage attributes using makecert, or any other tool I can use to generate my own test certificates? The reason I'm interested is that certificates used for BizTalk Server AS2 ...
3
votes
2answers
1k views

MakeCert - Is it possible to change the key size?

When i generate a Certificate using MakeCert.exe I want to change the key size from 1024 to 2048. Is this possible? Or do i need to setup a Certificate Authority? Cheers Rohan
2
votes
2answers
386 views

add or create 'Subject Alternative Name' field to self-signed certificate using makecert

How can I create a certificate using makecert with a 'Subject Alternative Name' field ? You can add some fields eg, 'Enhanced Key Usage' with the -eku option and I've tried the -san option but ...
2
votes
0answers
360 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 ...
2
votes
1answer
611 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
212 views

Syntax error for makecert.exe tool

Did I missed anything during this? I am running a this command from command prompt in Windows 7 to create a certificate but it is showing a syntax error. Command I ran: makecert.exe "c:\1\Test.cer" ...
1
vote
1answer
561 views

Create key pair for BizTalk AS2 connection

I need to create an AS2 connection in BizTalk Server 2006 R2 to communicate with a business partner. I've worked with BizTalk AS2 config before and the BizTalk docs have pretty good walkthroughs about ...
0
votes
1answer
61 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
546 views

certificates with SDK tools (makecert, pvk2pfx)

I need to make two certificates: CA sert and Server cert. I use this commands. makecert -r -pe -n "CN=CACert" -a sha1 -sky signature -cy authority -sv CACert.pvk CACert.cer certutil -addstore Root ...
0
votes
1answer
228 views

How do I force makecert to output the private key to a file (not the Crypto store)?

I want to generate a key pair for use within my applications, but exporting them manually from the mmc is a pain. How can I use commandline parameters, or otherwise end up with a private certificate ...
0
votes
2answers
699 views

makecert tool issue

I am confused about the following concepts in makecert tool. Especially about what means location (-sr parameter) and store (-ss parameter). I read and get my confusion from the following link, I ...