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

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Here the following syntax s used:

makecert -pe -ss MY -$ individual -n "CN=your name here" -len 2048 -r

Sorry i cannot test it, since i don't have makecert

link|improve this answer
makecert will work only 1028 bits. not 2048 bits – Sathish Mar 2 '11 at 13:12
I was able to use makecert from VS2010 to specify -len 2048 param – Eugene S. Dec 7 '11 at 15:53
feedback

A description of makecert options can be found at msdn, but I didn't see an explicit one for setting the key length.

link|improve this answer
Cheers ISW, I have looked on MSDN but I couldn't see any options for setting the key size. – Rohan West Jan 21 '09 at 0:30
"makecert -!" will also give you help for all the advanced options including "-len". – Jeremy Wiebe Jan 18 '10 at 19:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.