.NET Class for handling X.509 Certificates

learn more… | top users | synonyms

0
votes
0answers
15 views

WCF client usernametoken nonce, x509 binary security

This is the sample soap I am trying to generate. My client certificate has a private key+public key, server certificate has only public key wsdl: https://service100.emedny.org:9047/MHService?wsdl ...
0
votes
1answer
11 views

How do you parse the Subject Alternate Names from an X509Certificate2?

Is there an easy way to get the Subject Alternate Names from an X509Certificate2 object? foreach (X509Extension ext in certificate.Extensions) { if ...
0
votes
1answer
17 views

How to construct a certificate based on another

I need to send a certificate through an asp.net page. An ActiveX would read the certificate from user's PC and with a click of a button, somehow the certificate should go to server to sign a document ...
3
votes
0answers
52 views

Issue running SSL-enabled TCP server under mono

I'm developing an application which requires SSL encryption between the client and server, and needs to run under Windows and in Ubuntu under Mono. At the moment, the server and client pair works ...
0
votes
1answer
30 views

Would it be okay to instantiate X509Certificate2 object in one thread and then use it in multiple threads for WCF calls?

I have the following situation. I need to load a .pfx file into X509Certificate2 object and use that for WCF calls: private IThatWcfService GetService() { var binding = new WebHttpBinding(); ...
0
votes
1answer
52 views

Issue with X509RevocationMode.Online in revoke certificate validation

I am validating the certificate revocation in online mode but the url mentioned in CRL Distribution Point is not getting hit if the CRL is already cached in memory. I am using fiddler to verify if the ...
0
votes
1answer
82 views

Issue installing X509Certificate2 from C# code

I am installing a pfx file using the code below (password and certPath are passed into method): X509Certificate2 cert = password != string.Empty ? new X509Certificate2(certPath, password) : new ...
0
votes
1answer
63 views

Can I implement message security in ASP.NET Web API?

I have a requirement to use Web API, and implement security on those calls. I know how to do what I need in WCF, but Web API is frustrating in its efforts to be simpler. SSL, I think I got that. I ...
2
votes
0answers
71 views

X509Certificate2.Verify behaviour

I have a digitally signed binary app.exe. Certificate is issued by commercial CA. In file properties (on Windows), Digital Signature information says that This digital signature is OK. If I somehow ...
0
votes
1answer
161 views

C#.NET Encrypt XML on one machine and Decrypt on other machine

I need to do a GET/PUT/DELETE/POST message on httpwebrequest. my request body contains XML. I need to encrypt the content in body XML and decrypt back on the client/receiver side. I see there are ...
0
votes
1answer
51 views

How to Decrypt a Security Token from my custom STS without using WIF

I have a scenario I need my Security Token service to Authenticate mobile applications as well. Is there a way that I can decrypt the token in the SignInResponseMessage SecurityTokenService sts = ...
1
vote
0answers
59 views

Having trouble generating test X509Certificate

I'm having problems creating a test X509Certificate in my store that I can use in WCF. All of the certificates I create have the same result when I try to use it in the WCF channel factory - "The ...
0
votes
0answers
23 views

ClientCertificate validation in WCF/MSMQ

I'm creating a WCF/MSMQ service with NetMsmqBinding. I want to sign it with a certificate from the client and secure the transport using a certificate issued by the service. I want to do this all in ...
0
votes
1answer
55 views

How can a verify my WCF message is signed and encrypted?

How can I verify that my WCF message has been signed? I've got my setup running and working just fine, but need to be able to inspect the signature on the server side. How is this done? I'm using ...
0
votes
0answers
71 views

Decrypt docum. with x509Certificate2, preset passw. to suppress passw. dialog

I want to decrypt an Document with the matching private key under Windows high security conditions. But everytime the CSP asks for the password to grant access. I need to suppress the password dialog ...
0
votes
0answers
39 views

Load privately created .p12 cert from azureblob and have it be trusted

The problem I am experiencing is that I am trying to port a Xero based co-application to run in an Azure Web site. Xero, for security uses OAuth and Certs, one that I have generated and one that they ...
0
votes
1answer
185 views

Why do I get an Access Denied error when creating an X509Certificate2 object?

We have some unit tests which have PFX certificates embedded in them. These certificates are read during test execution and turned into X509Certificate2 objects. Unfortunately, when run as an ...
0
votes
1answer
97 views

XMLDSig X509SerialNumber too large to be an int, fails XSD validation

I'm trying to create and XMLDSig using an X509 cert. I run the verbatim example from MS (http://msdn.microsoft.com/en-us/library/system.security.cryptography.xml.x509issuerserial.aspx) which ...
0
votes
0answers
40 views

How to use X509 with ActiveX?

Well, I am working on digital signature concept. I could read all certificate through C#( X509 dll) But as I read it, it doesn't prompt a message box for asking Pin No.(i. e. a private Key) .It ...
3
votes
1answer
110 views

X509Certificate2 makes IIS crash

When newing up an instance of X509Certificate2(string, string) my IIS process simply crashes. No .Net exception, no nothing, except of this in my event log Faulting application name: w3wp.exe, ...
1
vote
1answer
362 views

Create and verify x509 certificates in .Net

In connection with my enterprise project (intranet only) I came across a question with the verification of certificates using .net System.Security.Cryptography.X509Certificates Step 1: Creating a ...
0
votes
0answers
221 views

soap with securityheader calling java webservice

I'm trying to send a soap request to a java webservice but the signature check is always retuning false Can someone help me, please, I'm looking for a week and still not found a solution.. this is ...
0
votes
3answers
560 views

How to encrypt/decrypt text using a X509Certificate & AES-256 algorithm

I have a X509 certificate that I would like to use to encrypt/decrypt password. However, I can only use AES-256 algorithm. Everything I have found on the internet suggests to use ...
2
votes
1answer
269 views

Private key is null when accessing via code, why?

I have a certificate installed on my machine and when I go to view it, I see the message "You have a private key that corresponds to this certificate" however, when I try to access that private key in ...
1
vote
1answer
81 views

Password required to access private key in code?

I have a certificate with private key installed in my certificate store. It required the password in order to install it, which I provided. My question is whether or not I need to provide it again ...
0
votes
0answers
134 views

adding certificate to remote x509store miss the private key

The task is to import certificate to remote server (win2008 server web edition/ IIS7). certificate is in .pfx file. after installation I noticed the private key saved on the client server (from ...
1
vote
2answers
246 views

Why does makecert not make a *valid* certificate?

I want to create an X509 certificate for testing purposes. This certificate has to be shared by 3 developers on their local machines (i.e. all share the same certificate so we can use the same ...
1
vote
1answer
481 views

X509 certificate not loading private key file on server

I'm using the Google Analytics API and I followed this SO question to set up the OAuth: http://stackoverflow.com/a/13013265/1299363 Here is my OAuth code: public void SetupOAuth () { var Cert = ...
0
votes
2answers
407 views

Programmatically generating, storing and using X.509 certificates in C#

I'm working on an application written in C# where I basically need to act as my own certificate authority. The data flow is something like this: The end user generates a public/private key pair and ...
2
votes
1answer
167 views

Reading public Key from an X509 structure in Javascript

Hello I have an encoded public key with a X509 structure and I want to extract modulus and the public exponent from it I'm using the following ASN.1 Decoder http://lapo.it/asn1js/to read the key but I ...
1
vote
1answer
175 views

X509Certficate2 issue when using iPhone Apple Push Notification Provider (apns-sharp)

using APNS-Sharp in a .Net web service on a Rackspace cloud site. I'm getting hung up with no response at all when instantiating a new X509. Using apns-sharp it's this line: public ...
0
votes
0answers
57 views

Encrypting a string on server A and decrypting it on server B with the same certificate not working

We are using a certificate for encrypting and decrypting data using the RSACryptoServiceProvider. We have also exported the same certificate to another server. In both instances, encryption and ...
0
votes
0answers
95 views

CA2122 : Microsoft.Security : Link demand and X509Certificate2

private void EnsureCertificateAuthorityConfigured(X509Certificate2 certificate) { X509Chain theChain = new X509Chain(true); theChain.Build(certificate); for (int i = 0; i ...
2
votes
2answers
507 views

How do I use a private key in C#? “Cannot find the requested object.”

I'm trying to implement authentication for MasterCard Match, as part of their following documentation, they have a sample private key: ...
0
votes
0answers
220 views

How to read Digital Signature Certificate Dynamically

I am about to make an webpage on c#.net where anyone(whoever visit that page) can able to know their digital signature certificate's validity along with how many dsc are installed on their machine. i ...
1
vote
0answers
208 views

How to validate remote ssl certificate?

I want to validate a remote SSL Certificate. I have an instance of X509Certificate2 and access it with: HttpWebRequest request = ...
0
votes
1answer
357 views

HttpClient request with x509 Certificate works on Debug but fails in Production (403 forbidden)

I have a black box service I have to call into with simple rest commands that returns xml. They issued us a certificate that had to be run in IE and installs in to IE's Certificate section. As per ...
2
votes
1answer
671 views

“System.Security.Cryptography.CryptographicException: An internal error occurred”?

In my project i am using ACS SAML Security. Here we need to provide the client certificate and server private key to invoke the service, these can be set in a webconfig file. The web service Running ...
0
votes
0answers
84 views

Can one instance of X509Certificate2 be reused with multiple requests?

My code performs WCF requests over HTTPS. It creates an instance of X509Certificate2 class and caches it to work around this problem with temporary files leakage. For each request an instance of ...
0
votes
1answer
134 views

Certificate is removed from the machine keyset when the application is closed

I'm trying to deploy a certificate into a windows-my store in order to use it for SSL in IIS6.0. When the application is running I don't see any errors in SSLDiag output and everything works ...
2
votes
1answer
371 views

X509Certificate2 ctor with cer file

I'm facing some issue with 2-way ssl configuration in .Net. Somehow, when I create X509Certificate2 object using .cer file and password in the constructor, the password is ignored (I gave wrong ...
0
votes
0answers
229 views

Creating X509Certificate2 from public and private keys

I have two strings, one is the private key, one is the public key, they are in this format: Public -----BEGIN PUBLIC KEY----- (key data) -----END PUBLIC KEY----- Private -----BEGIN PRIVATE ...
5
votes
1answer
191 views

Given two certificates, how can I verify that one was signed with the other's private key?

I have two X509Certificate2s. Call them toCheck and checkWith. How can I check that toCheck was signed by the private key of checkWith? Basically, I want the C# equivalent of Java's ...
0
votes
1answer
198 views

Include intermediate certificate in signature C#

I'm trying to sign a manifest file to be used in Passbook using c#. my code was doing fine until they released GM of iOS6. in this seed they want the signature to include the intemidiate certificate. ...
0
votes
2answers
472 views

how to load password protected certificates from the X509Store?

I am building an ACS protected Azure WCF service that will require clients to authenticate via a certificate. I would like the client (and the server) to load their respective password certs from ...
0
votes
1answer
575 views

X509Certificate2 p12 is store required?

Question when running the following code: X509Certificate2 cert = new X509Certificate2(@"C:\file.p12", "password", X509KeyStorageFlags.Exportable); RSACryptoServiceProvider crypt = ...
4
votes
1answer
3k views

The request was aborted: Could not create SSL/TLS secure channel [duplicate]

Possible Duplicate: The request was aborted: Could not create SSL/TLS secure channel I am trying to send a httpRequest with a client side certificate. The file, in this case a .p12 file. ...
1
vote
2answers
444 views

How to extract the AuthorityKeyIdentifier from a X509Certificate2 in .NET

I am looking for a way to extract the AuthorityKeyIdentifier extension from an X509Certificate2 instance. I did not see any built-in support for this but since windows can properly construct a ...
0
votes
1answer
332 views

Unable to get a certificate from store in c# by common name

In .Net 4.0 I have been unable to get a certificate from a custom store using the find method of the X509Store. Using the following code: X509Store store = new X509Store(storeName, ...
0
votes
2answers
793 views

java.security.cert.CertificateParsingException

I'm getting the following exception when trying to create a new certificate: java.security.cert.CertificateParsingException: signed overrun, bytes = 224 try { InputStream ...

1 2 3