Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
3k views

Where did 'My" certificate store go? [closed]

Because I'm awesome I'm trying to run the latest WIF demo app using VS2k10 B2 on my 7 boxen... 64bit of course (my neckbeard is strong) I'm having a problem getting it running. Part of the whole demo ...
5
votes
0answers
263 views

Using certificate and private key from Windows cert store with OpenSSL

I am trying to make a program, that uses some Web Services in Delphi XE. To connect to the Web Services, i have to use self signed (hope this is correct term) certificate, which is stored in Windows ...
5
votes
1answer
14k views

Install certificates in to the Windows Local user certificate store in C#

I'm writing a windows service that needs serveral certificates in the certificate store in order to connect to a third party web service. On my installer I call a small application (C#) that creates ...
4
votes
3answers
168 views

How can I access windows root certificate authorities certificates with Delphi?

Question related to Lazarus or Delphi. Is there a way to programmatically access trusted Root Certificate Authorities certificates in Windows. I know there is GUI based tool in Windows called ...
3
votes
3answers
2k views

Get List of Certificate Store Names in C#

I am able to get certificate collection in particulaer store by using the following statment. X509Store.Certificates But not sure how I can get the list of certificate store names present under ...
1
vote
2answers
870 views

WCF, Certificate Authentication - Common Errors and Confusing Arguments

I am trying to setup a WCF service to use a Certificate for Authenticating the client. I have read tons of posts on how to create the certificate, and I have been able to do so (finally). I am ...
1
vote
3answers
4k views

Get list of certificates from the certificate store in C#

For an secure application I need a possibility to select a certificate in a dialog. How can I access with C# to the certifacte store or a part of it (e.g. storeLocation="Local Machine" and ...
0
votes
0answers
3 views

NTFS EFS : How to copy encryption certificates from one file onto (an)other file(s)?

I would like to copy all encryption certificates associated with one marker-file onto a set of other files. Sure, there's the QueryUsersOnEncryptedFile function that returns a ...
0
votes
0answers
62 views

client certifciated created using CA certificate doesnt connect to server

I am facing a problem. Let me explain I have a rootCA certificate generated using this commandline makecert -pe -sky signature -sr localmachine -n "CN=RootTrustedCA" -ss ROOT -r RootTrustedCA.cer ...
0
votes
3answers
2k views

Access Local Machine Certificate Store in Java?

Is it possible to access certificates stored in the Local Machine store (rather than Current User) from a Java Servlet? I've tried using the MSCAPI provider opening the "Windows-MY" and "Windows-ROOT" ...
0
votes
1answer
265 views

OpenSSL SSL_CTX_use_PrivateKey_file with Windows certificate store

I have a native C++ library which uses OpenSSL for TLS. It reads the private key using SSL_CTX_use_PrivateKey_file and everything is fine, Then I created a C# wrapper which reads the certificates ...