How to find out what storeName certificate is?

I have a certificate installed in Windows Server 2003

The path that I see from MMC: Certificates (local computer) / Personal / Certificates

I want to configure it in my wcf configuration. How to find out what storeName is?

This is what I still see in my wcf configuration

<serviceCertificate findValue="certificate.example.com" storeLocation="LocalMachine" storeName="???" x509FindType="FindBySubjectName" />
+5
source share
3 answers

A certificate store can be thought of as a logical container in the operating system that contains one or more certificates. The most common way to view certificate stores is to use MMC certificates.

, . .

: , storeName = "TrustedPeople".

, Microsoft StoreName https://msdn.microsoft.com/en-us/library/system.security.cryptography.x509certificates.storename(v=vs.110).aspx

AddressBook → X.509 .

AuthRoot → X.509 (CA).

CertificateAuthority → X.509 (CA).

→ X.509 .

My → X.509 .

Root → X.509 (CA).

TrustedPeople → X.509 .

TrustedPublisher → X.509 .

"" , "".

+5
<serviceCertificate findValue="xxxxx" storeLocation="LocalMachine" x509FindType="FindByThumbprint" />

"FindbyThumbprint", .

: http://msdn.microsoft.com/en-us/library/ms734695.aspx

+1

storeName = "My", .

makecert (. ):

makecert -sk MyKeyName -iv RootCaClientTest.pvk -n "CN = tempClientcert" -ic RootCaClientTest.cer -sr currentuser -ss my -sky signature -pe

"-ss indicates the store name for the certificate." My "is the location of the certificate store.

For more information, see Enable certificates in the maintenance section .

0
source

All Articles