50 likes | 188 Views
Creating Test Certificates with "MAKECERT". Download Visual Studios SDK & Create Certificates: http://www.microsoft.com/en-us/download/details.aspx?id=2680. Root Authority is the master certificate from which all other test certificates will be issues.
E N D
Creating Test Certificates with "MAKECERT" • Download Visual Studios SDK & Create Certificates: • http://www.microsoft.com/en-us/download/details.aspx?id=2680 • Root Authority is the master certificate from which all other test certificates will be issues. makecert -pe -n "CN=Development Root Authority" -ss my -srLocalMachine -a sha1 -sky signature -r "Development Root Authority.cer"
Creating Test Certificates with "MAKECERT" • Create Certificates: • Create certificate suitable for use on a server. makecert - pe - n "CN=HONNAKER" -ss my -srLocalMachine -a sha1 -sky exchange -eku 1.3.6.1.5.5.7.3.1 -in "Development Root Authority" -is MY -irLocalMachine -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12 HONNAKER.cer
Creating Test Certificates with "MAKECERT" • Create Certificates: • Another certificate for the client software. makecert - pe - n "CN=testClient" -ss my -srLocalMachine -a sha1 -sky exchange -eku 1.3.6.1.5.5.7.3.1 -in "Development Root Authority" -is MY -irLocalMachine -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12 testClient.cer
Creating Test Certificates with "MAKECERT" • Microsoft Management Console: • See Certificates.
Creating Test Certificates with "MAKECERT" • Move to Trusted Root Certification: • See Certificates. • Location of Certificates: • C:\Program Files\Microsoft Visual Studio 10.0\VC