Tagged Questions

8
votes
1answer
994 views

How to verify an X509Certificate2 against an X509Certificate2Collection chain

I'm writing a SAML 2.0 response parser to handle POST authentication in ASP.Net (in C# and MVC, but that's less relevant). So I have a .p7b file to validate with and that can be read into a ...
6
votes
3answers
4k views

.Net - X509Certificate2 vs X509Certificate

What is the difference between the two?
5
votes
2answers
306 views

Find Certificate by hash in Store C#

How to get Certificate by hash in Windows Store using C#? sha1 example:7a0b021806bffdb826205dac094030f8045d4daa this loop works but: X509Store store = new X509Store(StoreName.My); ...
5
votes
3answers
332 views

Debugging failing HTTPS WebRequest

I'm writing a small program which will make a GET request to a server using HTTPS and the HttpWebRequest class. The server (obviously) has a server certificate. It also expects the client to provide a ...
5
votes
1answer
141 views

How can I send a password along with my certificate (X.509) in a WCF Service?

I have a WCF Service that uses a X.509 certificate as client credentials. Most of these credentials do not require a password for using it, just for installing it. But now, a client of ours has a ...
2
votes
0answers
198 views

winhttpcertcfg: Granting certificates with for windows service user

I'm stuck with granting client certificates in Windows Server 2003 with winhttpcertcfg :( My cert is correctly installed in LOCAL_MACHINE\My keystore and I granted it with winhttpcertcfg.exe. So ...
2
votes
1answer
357 views

How to get X509Certificate from certificate store and generate xml signature data?

How can I get X509Certificate from certificate store and then generate XML SignatureData in .net C#?
2
votes
1answer
553 views

How to parse a SAML assertion request in .Net

I'm trying to implement a SAML SSO solution in .Net, but I'm having a problem parsing the assertion. I have a sample assertion (looks like byte[] data as text) and corresponding .p7b file. I want to ...
2
votes
1answer
557 views

WCF Message security using certificates -

I am trying to create a WCF service that will use message mode security with a certificate. When I run the service code, both in IIS and cassini I get the following message It is likely that ...
2
votes
2answers
944 views

Store X509 Certificate in database

In order to access to the web service I need a certificate. I generated my certs: openssl genrsa 1024 > private.key openssl req -new -x509 -nodes -sha1 -days 1100 -key private.key > public.cer ...
2
votes
2answers
2k views

Can't connect to HTTPS using X509 client certificate

I'm new to cryptography and I'm a bit stuck: I'm trying to connect (from my development environment) to a web service using HTTPS. The web service requires a client certificate - which I think I've ...
1
vote
0answers
25 views

How to call the default certificate check when overriding ServicePointManager.ServerCertificateValidationCallback in C#?

I need to trust some self-signed certificates in the application, so I override validation callback like this: ServicePointManager.ServerCertificateValidationCallback = ...
1
vote
1answer
55 views

HttpWebRequest timeout on first request with bad server certificate

I'm using the following code to accept bad server certificates: ServicePointManager.ServerCertificateValidationCallback = delegate(object s, X509Certificate cert, X509Chain chain, SslPolicyErrors ...
1
vote
2answers
51 views

Setting CertificatePolicy=$TrustAll using C#

I currently use this code in power shell: $TrustAll=$TAAssembly.CreateInstance("Local.ToolkitExtensions.Net.CertificatePolicy.TrustAll") ...
1
vote
1answer
43 views

Remote Desktop Settings doesnt see imported Certificate

I have imported my certificate in [Certificates - Current User\Personal\Certificates] This is also where Visual Studio creates its new certificates for RDP when requested. When I then go over ...
1
vote
0answers
142 views

How to create a snk from pfx / cer?

Microsoft seems to have created a certification jungle, that is hard to understand. Microsoft X.509 certificate (.cer) Personal Information Exchange (.pfx) Assembly Signature Key Attribute ...
1
vote
1answer
60 views

wsdl KeyInfo section show security key data. Is this normal?

The wsdl keyinfo section shows security info for my ssl cert. Is this normal? Can this be viewed by the client? Here is what mine looks like, I changed the value between X509Certificate: ...
1
vote
1answer
757 views

BouncyCastle PrivateKey To X509Certificate2 PrivateKey

I create a certificate using BouncyCastle var keypairgen = new RsaKeyPairGenerator(); keypairgen.Init(new KeyGenerationParameters(new SecureRandom(new CryptoApiRandomGenerator()), ...
1
vote
0answers
436 views

Problems reading authenticating a SAML assertion in .Net using WSSecurityTokenSerializer

I have a SAML assertion that I wish to authenticate in .Net using WSSecurityTokenSerializer. I've got the key-chain and SAML XML, despite a few issues. First I get the SAML assertion from the HTTPS ...
1
vote
1answer
318 views

How to verify X509 cert without importing root cert?

My program contains 2 root certs I know and trust. I have to verify certs of trustcenters and "user" certs issued by the trustcenters which all originate from these 2 root certs. I use X509Chain ...
1
vote
2answers
295 views

How can you get a certificate in code on Windows Azure

I'm trying to create our own WIF Identity Provider and run it on Azure but I'm struggling when trying to automatically generate the Federation Metadata. This line does not appear to work on Azure: ...
1
vote
0answers
140 views

Importing an X509Certificate From PKCS7_PEM File

Situation Hi, I am using the OpennSSL.NET Wrapper in my C# project. I am trying to make A small PKI. I can create a CA, generate X509certifications and save them into pem files using this method ...
1
vote
1answer
187 views

Create a RSAParamaters Object from public+private key

I need to create a RSAParameters object in .Net using a private and public key (.key and .cer file). Is it possible to do this in .Net without the use of third party software? If so, where should I be ...
1
vote
0answers
260 views

OpenSSL C#.NET Wrapper X509 in a readable Format

Iam using the C#.NET Wrapper of OpenSSL and i try to generate an X509 certification in a readable form. I can create an x509 certificate using X509Certificate x509 = new X509Certificate(int serial, ...
1
vote
2answers
503 views

Generate X.509 (non self signed) Client Certificate Programmatically

Is it possible to generate a client certificate on-the-fly in ASP.NET without using makecert.exe? the generated certificate should be signed with a given CA certificate (the specific CA certificate is ...
1
vote
1answer
443 views

“Cannot find the certificate and private key for decryption” for Certificate pfx pkcs#12 with private key

I have the following .Net code (asp.net) for sign using client certificate. I have client certificate stored under local computer and not the current user. The client certificate is pfx pkcs#12 and ...
1
vote
2answers
287 views

How to P/Invoke CryptUIWizExport Function using .NET

Can anyone translate these two cryptui.dll functions/structures into C#.NET [dllimport] wrappers? I would like to P/Invoke the CryptUIWizExport function to display the Windows Certificate Export ...
1
vote
1answer
971 views

Specify client certificates in HttpWebRequest in .NET Compact Framework 3.5

Previously, I was trying to use client certificate on .NET CF 2.0 (see here) and I ultimately had to give up. I'm now on .NET CF 3.5 which has support for the ClientCertificates property on the ...
1
vote
2answers
903 views

How can I use a ssl wildcard certificate to mutually authenticate several WCF servers via X509?

I've got two WCF servers, both on the domain mydomain.com (fictional example, as are IP below !), respectively named server1 and server2. They are both accessible through their public IP addresses ...
1
vote
1answer
162 views

How to obtain a working X509Certificate for my WCF Service hosting

I am in the process of hosting my WCF services in my asp.net hosting account and I want to use X509Certificate for authentication of communication. Where do I get a certificate in this instance? Make ...
1
vote
2answers
2k views

X509 guide/tutorial in C#

Can anyone point me to a good introductory materials on X509 certificates with examples in C#.
0
votes
1answer
16 views

Finding a cert with .Net X509Store? Anything more maintainable/managable than FindBySerialNumber?

I have an application that uses a certificate to talk to a webservice on a server that enforces SSL. Right now we use x509Store.Certificates.Find(X509FindType.FindBySerialNumber, certSerialNumber, ...
0
votes
0answers
44 views

How to make bouncycastle .net libraries talk to FIPS compliant .net implementation

We are currently building a certificate authority .net that will: Generate a root certificate Use the root certificate to issue device certs. Revoke a device certificate Generate a Certificate ...
0
votes
2answers
44 views

Check authenticity of WCF Service

I'm a bit lost concerning WCF Server authentication... I'm writing a WCF service that will be accessed by multiple clients. I want to make sure that the client apps always connect to this service and ...
0
votes
1answer
32 views

File not found error when creating a private key using CERTENROLLLib

System.IO.FileNotFoundException: CertEnroll::CX509PrivateKey::Create: The system cannot find the file specified. 0x80070002 (WIN32: 2) The error above is the exception thrown when I attempt to ...
0
votes
0answers
28 views

.Net, XmlDSigEx: CngKey.import using public key from X509Certificate2

I'm trying to validate XML Signatures that have been signed with ECDsa algorithms. I'm basing my work on the XmlDSigEx library, which I have to modify slightly to fit my needs. My present problem is ...
0
votes
1answer
65 views

How to extract the domain name out of an X509Certificate object during SslStream.AuthenticateAsClient? (.NET4)

I have a RemoteCertificateValidationCallback function called by SslStream.AuthenticateAsClient, which is passed an X509Certificate object. I'd like to extract the name from that certificate, such ...
0
votes
0answers
41 views

TimeStampToken and Certificate Chain

I am using Bouncy Castle to read response from Time Stamp server in .NET. In response i have only signer certificate, but i need to include certificate chain, because time stamp server cannot be ...
0
votes
1answer
74 views

How to obtain CN of the certificates in particular store?

i want to obtain the CN of the certificates stored in the MY store as i want to verify if the certificate exists or not in that store. I don't know the which method should be used to perform this ...
0
votes
1answer
101 views

How are multiple ServicePointManager.ServerCertificateValidationCallback methods evaluated?

How is the following code evaluated? ServicePointManager.ServerCertificateValidationCallback += ValidateRemoteCertificateA; ServicePointManager.ServerCertificateValidationCallback += ...
0
votes
1answer
208 views

Client cannot find the X.509 certificate

I'm testing a WCF service on a local workstation, and having difficulties with the X509 certificate. I've created a certificate and registered it successfully. The certificate shows in Certificate ...
0
votes
1answer
201 views

X509Certificate2: Internal error

When I try to execute code below I got an error: Internal error occurred. var certificate = new X509Certificate2( p12FileBytes, p12FilePassword ); when I added ...
0
votes
1answer
256 views

Certificate issue when Connecting with Azure Service Management API

I am getting an issue while fetching the list of hosted services. My code is as below: string requestUrl = "https://management.core.windows.net/" + SubscriptionID + "/services/hostedservices"; ...
0
votes
0answers
236 views

Importing X509Certificate From DER File [OpenSSL.NET]

iam using OpenSSL.NET Wrapper in my C# project. X509Certificate has a static method X509Certificate.FromDER(BIO) I can save a certificate in DER Format fine, but when i try to import it using ...
0
votes
1answer
221 views

X509CertificateStore.FindCertificateBySubjectName does not work in x64?

I am using the following code: store = X509CertificateStore.LocalMachineStore(X509CertificateStore.RootStore); store.OpenRead(); ...
0
votes
1answer
258 views

How to force WebBrowser control to select one specific client certificate?

Anyone knows how to force the WebBrowser control to automatically select a specific client certificate and not open the pop up with client certificates list?
0
votes
1answer
380 views

How to digitally sign Open Office XML document in client-server paradigm with ASP .NET webservices?

I want to create a web application that can access a smart card with a digital certificate, and then digitally sign an open office XML document on the server. I know a couple of open source frameworks ...
0
votes
2answers
209 views

x 509 root cerificate verification

I want to make x509 certificate root verification as manually. I used BouncyCastle Library. I added namespaces below using System; using System.Collections; using System.Collections.Generic; using ...
0
votes
1answer
389 views

X509Certificate2 Not Exportable Priv Key?

On Win Server 2008, I can execute the code below, and when I try to export the cert via the MMC GUI, I do not have the option to export the private key as well. However, if I use the GUI to import the ...
0
votes
3answers
633 views

Private key certificate does not support digital signature when loaded via X509Certificate

Recently i faced a need to exchange SOAP messages with a java web service where digitally signing messages is mandatory for communication. The proccess is, as expected, signing messages with a private ...

1 2