In cryptography, X.509 is a standard for a public key infrastructure (PKI) for single sign-on (SSO) and Privilege Management Infrastructure (PMI).
16
votes
2answers
358 views
How do I send signed emails from ActionMailer in Rails 3?
Using Rails 3 I want to use an X.509 certificate to sign parts of emails. There is a currently existing answer for Rails 2 at How do I send signed emails from ActionMailer? but it doesn't work on ...
10
votes
5answers
3k views
iPhone web service calls to WCF Service with Certificate Authentication
We are a .Net shop that has standardized on WCF Services. We are in the processs of developing an iPhone application that needs to make secure web services calls to obtain data for the app. To ensure ...
9
votes
1answer
2k views
Is it possible to programmatically generate an X509 certificate using only C#?
We're trying to generate an X509 certificate (including the private key) programmatically using C# and the BouncyCastle library. We've tried using some of the code from this sample by Felix Kollmann ...
6
votes
1answer
263 views
Bouncycastle: X509CertificateHolder to X509Certificate?
In versions prior to r146 it was possible to create X509Certificate objects directly.
Now that API is deprecated and the new one only deliveres a X509CertificateHolder object.
I cannot find a way to ...
5
votes
3answers
155 views
X.509 libraries
I'm looking for a library/module/package with which I could create and sign X.509 certificates, with the ability to conditionally add custom v3 extensions – which can be fairly complicated; for ...
5
votes
1answer
479 views
WCF Certificate Chain, verify programmatically
I'm trying to use certificates programmatically, rather than using the store. I'm creating X509Certificate2's with filename and password.
This works fine when I have manually added the root ...
5
votes
4answers
7k views
Using HTTPS with REST in Java
I have a REST server made in Grizzly that uses HTTPS and works wonderfully with Firefox. Here's the code:
//Build a new Servlet Adapter.
ServletAdapter adapter=new ServletAdapter();
...
4
votes
5answers
124 views
SecCertificateRef: How to get the certificate information?
I have a certificate (SecCertificateRef), I can check if it's valid and I can extract a "summary" using SecCertificateCopySubjectSummary.
What is the "summary" exactly? I don't understand the term "A ...
4
votes
2answers
65 views
Writing a SSL Checker using Java
Does anyone know of any good tutorials, sites, and or books on writing a SSL checker in Java? I'm trying to do what can be found here: http://www.sslshopper.com/ssl-checker.html .
I'm not trying to ...
4
votes
1answer
183 views
OpenSSL as a CA without touching the certs/crl/index/etc environment
I think I have the right OpenSSL command to sign a certificate but I've gotten stuck and the tutorials I've found use a different argument format (I'm using OpenSSL 0.9.8o 01 Jun 2010).
openssl ca ...
4
votes
3answers
924 views
Securely Handling Private Keys from Windows Key Store - C#
I'm working on an application that encrypts configuration file settings for an ASP.Net web server. The encryption method I'm implementing is enveloping data using AES and RSA. I'm generating an AES ...
4
votes
2answers
1k views
How do I use SSL certificates with HttpWebRequest in C#?
Currently I'm writing a utility application that will connect to a given IP and port and check the information in the SSL certificate using HttpWebRequest. When I try to extract the certificate I get ...
4
votes
5answers
3k views
How to extract CN from X509Certificate in Java?
I am using a SslServerSocket and client certificates and want to extract the CN from the SubjectDN from the client's X509Certificate.
At the moment I call cert.getSubjectX500Principal().getName() but ...
4
votes
1answer
491 views
Get client certificate for page registration
I want to make a registration page for clients, that would only contain a button register and unregister. When the user would click on any of these 2 button he would should be prompted to select a ...
3
votes
1answer
110 views
Getting certificate chain to a private root
I'm trying to verify that the certificate from a signature chains back to a particular root certificate, which is not trusted by Windows (it's a private certificate for the app).
My current attempt ...
3
votes
1answer
308 views
Certificate subject X.509
According to the X.509, a certificate has an attribute subject.
C=US, ST=Maryland, L=Pasadena, O=Brent Baccala, OU=FreeSoft,
CN=www.freesoft.org/emailAddress=baccala@freesoft.org
This is the ...
3
votes
1answer
896 views
OpenSSL Version V3 with Subject Alternative Name
I'm using the OpenSSL command line tool to generate a self signed certificate. It seems to be working correctly except for two issues. I can't get it to create a .cer with a Subject Alternative Name ...
3
votes
2answers
452 views
Save X509 certificate to a file
I am working on a HTTPS client and I managed to establish a secure connection and get the X509 certificate using "X509 *cert = SSL_get_certificate(ssl);" (ssl is SSL*).
How do I save the certificate ...
3
votes
1answer
634 views
openssl: how to read a .crt file..?
I want to read the certifi.crt file using OpenSSL API (not in commands). I have no idea how to do that. If any one knows, please help me. Thank you.
If you give example code that will be very ...
3
votes
2answers
1k views
x509 C# examples?
I've been pouring through article after article on x509 cert creation, signing, etc. but I've yet to find a solution to my problem - wondering if anyone can point me in the right direction because I'm ...
3
votes
1answer
299 views
SOAP requests in Ruby with X509 Certificates
I am using Soap4r and HTTPClient to interact with a Webservice. The Service only accepts requests which have been digitally signed with an X509 certificate. I have gone through the steps of ...
3
votes
2answers
525 views
How do I read the public key from a signed C# exe
I'm signing a dot net exe using
signcode.exe with an spc/pvk combo
The file needs to read its own Public Key at runtime in order to verify some data. I've gone down a number of different avenues.
...
3
votes
1answer
2k views
Write x509 certificate into PEM formatted string in java?
Is there some high level way to write an X509Certificate into a PEM formatted string?
Currently I'm doing x509cert.encode() to write it into a DER formatted string, then base 64 encoding it and ...
3
votes
2answers
737 views
How do I use m2crypto to validate a X509 certificate chain in a non-SSL setting
I'm trying to figure out how to, using m2crypto, validate the chain of trust from a public key version of a X509 certificate back to one of a set of known root CA's when the chain may be arbitrarily ...
2
votes
1answer
41 views
How to download an EC2 X.509 certificate with an IAM User account?
Through the AWS Identity and Access Management, I have a user account to the AWS account of my CTO (who is credited with some money).
I wanted to use this IAM user account to set up my own instances ...
2
votes
1answer
63 views
X.509 Certification for Android
Just a little background on my project:
I'm implementing an SMS encryption program using ECDH for Android (BouncyCastle) and I need to send my public keys over SMS. Functionality wise, all is up and ...
2
votes
2answers
70 views
Check X509 certificate revocation status in Spring-Security before authenticating
Is it possible to check the revocation status of a x509 client certificate through the CRL in spring-security before authenticating it? I've checked documentations ...
2
votes
1answer
51 views
Digital Signature with wrong value
I am trying to create a digital signature for a block of Text. While I seem to be able to create a signature it is different from the digital test signature as required by our test cases. The code I ...
2
votes
2answers
114 views
In PHP how do I get a CSR's public key?
I have a web page which takes a CSR (certificate signing request) and signs them. Problem is: I dont know how to extract the public key from the CSR. I tried openssl_csr_get_public_key($request) where ...
2
votes
2answers
445 views
C# How can I validate a Root-CA-Cert certificate (x509) chain?
Let's say I have three certificates (in Base64 format)
Root
|
--- CA
|
--- Cert (client/signing/whatever)
How can I validate the certs and certificate path/chain in C#?
(All those three ...
2
votes
1answer
171 views
PHP and X.509 authentication - Checking certificate issuer
I'm trying to have a specific page on my site only accessible to people after X.509 authentication. Catch is, I want it to be available to all clients who have a matching certificate issued by a ...
2
votes
1answer
87 views
Can any tell me the difference between CSR version and certificate version?
I want to generate a X509 v3 certificate using a CSR (RFC2986), but the RFC says PKCS10 (CSR) supports only v1. Can anyone tell me the difference?
2
votes
2answers
102 views
how to compare distinct implementations of java.security.cert.X509Certificate
I'm using bouncycastle org.bouncycastle.jce.provider.X509CertificateObject and sun.security.x509.X509CertImpl in different parts of my app, and sometimes I need to compare them for equality, equals() ...
2
votes
1answer
210 views
what is the difference between X509_STORE and X509_STORE_CTX .?
can any one tell me how the Certificate trust chain is formed with these structures and what these two structure represent?
2
votes
2answers
210 views
How can we copy an EVP_PKEY which includes RSA key?
I found the function EVP_PKEY_copy_parameters, which can copy EVP_PKEY.
But some documentations about this function says it can only be used for DSA/ECC algorithms.
The official documentation (from ...
2
votes
1answer
155 views
Verify x509 signed text on PHP, linux openssl or whatever
I'm just starting with X509 protocol, e-tokens and digital signatures.
I can digitally sign texts.
The question is, how can I verify an signed text? On linux, using openssl, or PHP?
For example, I ...
2
votes
0answers
235 views
X509 store can not find certificate
I am using following code to find certificates in personal store. It finds the certificate on first page load but after postback it doen't find the same certificate.
X509Store store = new ...
2
votes
0answers
178 views
exchange web services x509 Certivicate
I am trying to connect to Exchange Web Services to send an email on behalf of a user through my own Web Service (ASP/WCF). My code works fine when running on a desktop PC able to connect to the ...
2
votes
1answer
202 views
WCF Proxy error Using X509 Certificate
I created a wcf service and could SUCCESSFULLY refer it in client application. But the problem comes when I implement X509 certificate.
1) when I change the service to use x509 Certificate, I ...
2
votes
1answer
237 views
Implementing certificate authorization in asp.net
First of all I'm sorry for my bad english.
In past two days i read a lot, but didn't find out solution for my problem.
I need to implement such authorization:
User openning web page, special form ...
2
votes
1answer
438 views
How do I parse subjectAltName extension data using pyasn1?
I have some data that pyOpenSSL gave me, '0\r\x82\x0bexample.com'. This should be the value of a subjectAltName X509 extension. I tried to encode the necessary parts of the ASN1 specification for ...
2
votes
1answer
604 views
What strings are allowed in the “common name” attribute in an X.509 certificate?
In the common name field of the DN of a X509 certificate, as defined in ASN.1 notation for OID "2.5.4.3", what are the allowed values?
I know that the limit is up to 64 characters, but are all ...
2
votes
2answers
278 views
X509: What's the difference between digital signature and non-repudiation
I have to deal with certificates issued by the Swiss post office on USB tokens. There deliver two certificates on the same token. In their intended usage fields, one has "non repudiation" and the ...
2
votes
3answers
976 views
validating X.509 certificate on linux
I have just started working with X.509 certificates. Can any one tell me how to go about validating a certificate on linux? The use case is that my app had downloaded a certificate in a previous ...
2
votes
1answer
1k views
Check signature for x509 certificate
I have:
x509 certificate (Base64);
String data;
Signature of string data (Base64).
Is it possible to check signature?
My code:
bool valid = false;
var signature = ...
2
votes
5answers
2k views
Reading a certificate signing request with c#
I want to read the contents of a csr in c#, however I haven't found any way to do it in c#.
What I've found was the namespace System.Security.Cryptography.X509Certificates, but it only handles ...
2
votes
1answer
1k views
Where to store X509 certificate for Windows service?
I have a Windows service that will normally be run using the Local System Account (although in some installations it may as a specific user account).
The service is using WCF, with communication ...
1
vote
1answer
44 views
Asp.Net C# x509 Certificate Creation and Installation
I have an online B2B app that needs to
Create a Certificate Request on the Client (Browser).
Generate the requested Certificate on the Server.
Return the Certificate + Private Key to the Client and ...
1
vote
2answers
74 views
Request with X509 Certificate
I have received a X509 certificate (one .cer file), I can decode it, so no problems on that. Now I want to sign a request with this certificate in node, but I can't get this to work:
var https = ...
1
vote
2answers
103 views
PFX Self Signed x509 Certificate with password secure
After looking at how to generate self-signed digital signatures from Creating a self-signed certificate in C#, I can call CreateSelfSignCertificatePfx and get PXF data in a byte array back, which can ...