Tagged Questions
0
votes
0answers
33 views
Reading and Verifying Certificates
Hi I have two certificates, i.e mycert.crt and root.crt. and I need to verfiy if my certificate is signed by root certificate.
I am using the following code to do so using the following code but I am ...
0
votes
1answer
35 views
How to use X509_verify()
Hi i am a beginner in coding, so I have a basic question if someone can answer me in a simple layman manner it will be highly appreciated.
My question is: How can we use X509_verify(). I have two ...
0
votes
0answers
35 views
X509* certificate serialization and deserialization in C
I have a certificate in 509* format and I want to serialize it into a char buffer and then later desserialize it in other to recover the certificate 509* again.
I am doing it like this to serialize:
...
0
votes
2answers
81 views
Creating Custom X509 v3 Extensions in Java with Bouncy Castle
I have successfully used the X509v3CertificateBuilder Java class from Bouncy Castle to create X509 certificates with standard V3 extensions. I am now trying to create certificates with custom ...
2
votes
1answer
35 views
Generate certificate with very few information using OpenSSL
I would like to generate a certificate with only a few information to get a very small certificate, maybe just the Version, Serial Number, Issuer, Validaty, Public Key and the signature.
I am asking ...
0
votes
1answer
32 views
Making secure HTTPS connection
I got a task on my Security classes. I have to generate two RSA keys (A and B), treat B as CA and then:
For key A:
Generate a certificate request.
Receive certificate from CA.
Use this key and the ...
0
votes
0answers
61 views
How to programatically issue a certificate from a self signed certificate with openssl?
I manage to create a self signed certificate, but now I would like to be able to issue other certificates with this self signed certificate. How can this be done in C using openssl library?
Thanks
...
1
vote
0answers
186 views
openssl_csr_sign return false cannot get certificate
this is my very first question in stackoverflow. Really need your help :(
So, I try to make my own CA (Certificate Authority) using PHP and Openssl. I try to create user CSR and sign them.
function ...
0
votes
0answers
99 views
How to generate a CSR without having a key file?
I am trying to run OpenSSL from Node.js in order to create a CSR. Basically, this works fine, but now I have a problem I can not solve.
Basically, what I want to do is to create a CSR from a key. The ...
1
vote
0answers
53 views
tomcat6 with crl doesn't load
I have a new tomcat6.0.34 setup I'm configuring on my CentOS 6.3 (64 bit). I've downloaded a series of CRLs for the certificate authorities I am using, converted them from DER to PEM with openssl:
...
3
votes
1answer
768 views
Chained Client Certificates
I would like to use SSL client certificates to authenticate users connecting to tomcat6/7. I’ve got tomcat configured correctly, and certificates I sign with the cert in the truststore I gave to ...
1
vote
0answers
99 views
Tutorial needed for creating certs with OppenSSL and importing into Glassfish 3.1
I have been tasked with using OpenSSL to create certificates for a webservices project and then importing the certs into glassfish 3.1. I do NOT have access to Apache. (The application that is being ...
10
votes
2answers
4k views
Why is Ruby unable to verify an SSL certificate?
This is my first time trying to use the XMLRPC::Client library to interact with a remote API and I keep receiving this error:
warning: peer certificate won't be verified in this SSL session
...
0
votes
1answer
113 views
code signing certificates compare/contrast other types
i'm trying to locate easy to understand information that tells me
(a) how a code signing certificate is similiar to/different from other types of SSL certificates;
(b) how many different types of ...
1
vote
1answer
2k views
Convert push certificate to P12 format on Windows for iPhone app
I am told that we need to provide an application developer with a P12 format 'Push Notification Certificate'. I need to know how to get this using Windows.
I have the following:
Developer ...
1
vote
1answer
3k views
How to generate SSL certificate with private key?
When I try to configure WS-AT transactions on windows the system claims I cannot use particular SSL certificate because it has no private key. I tried self signed certificate and one provided by ...
2
votes
2answers
11k views
Export P7b file with all the certificate chain into CER file
I have p7b file provided by Thwate.When I am trying to export the certificate in the cer file using the below command, the certificate chain is not included.
Please suggest how to do the same. This ...
19
votes
4answers
3k views
Where is the PEM file format specified?
I need to parse .PEM files.
I know that the standard for "Privacy-enhanced Electronic Mail" is defined in RFCs 1421-24. But they don't seem to mention some text I find inside OpenSSL .pem files (eg. ...
0
votes
2answers
2k views
Read Certificate files from memory instead of file OpenSSL
I have a server which would listen on HTTPS using OpenSSL. For this, I have to provide the certificate to use. However, the current implementation uses a filename to be provided to OpenSSL API. I want ...
2
votes
2answers
4k views
How do I tell Ruby's OpenSSL library to ignore a self-signed certificate error?
I'm trying to use Ruby's SOAP support as follows:
SERVICE_URL = 'https://...'
...
def create_driver
::SOAP::WSDLDriverFactory.new(SERVICE_URL).create_rpc_driver
...
7
votes
4answers
7k views
Self Signed Certificate in Windows without makecert?
We have a shrink wrap type Windows server application where we need to create a self signed certificate on the server to be used by some WCF web services. From our searches on the web, it appears ...