2
votes
2answers
773 views
In C#, sign an xml with a x.509 certificate and check the signature
Hi
I'm trying to sign an XML file using a x.509 certificate, I can use the private key to sign the document and then use the CheckSignature method (it has an overload that receives a certificate as …
0
votes
1answer
187 views
Converting a PKCS12 certificate to PEM certificate in .NET and vice versa?
PKCS12 certificate is stored in binary format while PEM certificate is an ASCII file which can be opened and viewed in a text editor.
Q1. How can I convert a PEM ceritificate of the form below to a …
0
votes
0answers
33 views
Does X509Certificate2 functionality exist in VBA ?
I have a VBA application that returns an HTTPS file but it stops to ask for the Certificate.
C# has this code:
Dim wr As HttpWebRequest = …
0
votes
3answers
212 views
Prompt user for password when grabbing X509Certificate from X509Store?
I have a C# form (running on the client machine) which gathers all the user X509Certificates from the store, presents them to the user so they can pick the one they want to use. Then I pass the cert …
0
votes
1answer
265 views
C# Export cert in pfx format
Hi im trying to use .Net and c# to export a certificate from the cert store into a PFX file. I'm trying to use the X509certificate2.export method wiht the X509ContentType.Pfx flag set, but am unsure …
0
votes
1answer
298 views
X509Certificate2 validation on web service
Hi,
I'm developing WCF web service that checks if a certificate in XML signature is valid.
XML is signed with qualified and valid X509 certificate. While I am running service within Visual Studio …
0
votes
4answers
837 views
How do I get the X509Certificate sent from the client in web service?
Hello all -
Apparently I was asking the wrong question in my earlier post. I have a web service secured with a X.509 certificate, running as a secure web site (https://...). I want to use the …
2
votes
3answers
784 views
Exporting X.509 certificate WITHOUT private key (.NET C#)
Hi everyone,
I thought this would be straightforward but apparently it isn't. I have a certificate installed that has a private key, exportable, and I want to programmatically export it with the …
1
vote
0answers
62 views
Minimal client which supports message-level security over the channel interface
I'm trying to build a minimal client for a WCF service, using the WSHttpBinding with SecurityMode: Message over a direct channel interface.
My current code is very simple:
EndpointIdentity i = …
0
votes
4answers
875 views
DOD Common Access Card (CAC) Authentication
I have figured out all the necessary steps to get DOD CAC card based client certificate authentication working in Apache, but am now struggling to pull a good GUID for the user from the certificate I …
2
votes
2answers
636 views
read client certificate from httprequest C#
I am trying to read an X509 certificate using Request.ClientCertificate but nothing is returned. The certificate is definitely being attached to the request because I can get the certificate …
0
votes
2answers
104 views
How to get X509Certificate from an arbitrary HTTPS URL?
I'm using HttpWebRequest to pull a page from an arbitrary HTTPS URL. In addition to the actual page result, I want to get an X509Certificate2 instance for the remote server I just talked to. I'm …
0
votes
2answers
298 views
Create certificate for a client app in .NET
I'm looking for a server app to be routinely generating certificates for client applications using self-signed root. Is there any streamlined process in .NET to programmatically generate those …
0
votes
1answer
1k views
How to read Pkcs#7 certificate chain from file/stream in C#?
I have two certificates that I saved to disk. One is a certificate with private key that I exported as a .pfx file, the other one is a certificate that I saved including its certificate chain as a …
2
votes
2answers
850 views
[Ruby] OpenSSL verify certificate from own CA
Hello all and thanks for your time reading this.
I need to verify certificates issued by my own CA, for which I have a
certificate. How can I do the equivalent to openssl's
openssl verify -CAfile
…
