Questions tagged [ssl-certificate]

An SSL certificate is an X.509 certificate that is used to provide authentication, privacy and integrity for a secure connection. Although the acronym refers to Secure Sockets Layer, the SSL protocol is deprecated and the certificates are more commonly used for Transport Layer Security (TLS) connections.

An SSL certificate is an X.509 certificate that is used to provide authentication, privacy and integrity for a secure connection. Although the acronym refers to Secure Sockets Layer, the SSL protocol is deprecated and the certificates are more commonly used for Transport Layer Security (TLS) connections.

10580 questions
4
votes
1 answer

Port 2195 open but cannot access APNS server

Problem: I cannot access APNS server. I get a 110 Connection Time Out error. My situation: I've contacted my host (hostmonster). They said my port 2195,2196 are already open. My certificate and passphrase is no problem, for I've tested it from my…
Van
  • 41
  • 1
  • 5
4
votes
2 answers

Java HTTP post using HTTPS Confusion - javax.net.ssl.SSLException: hostname in certificate didn't match

I'm sending an https POST on some url using Apache HttpClient. HttpClient httpClient = new DefaultHttpClient(); HttpPost httpPost = new HttpPost(url); HttpResponse response = httpClient.execute(httpPost); And I get: javax.net.ssl.SSLException:…
braincell
  • 562
  • 1
  • 13
  • 26
4
votes
0 answers

Using SSL from a CA for server + allowing ssl client authorization that is self-signed with Node.js

First time working with SSL client authentication. The way it works with node.js while mixing with a certificate issued by a third-party CA (in this case it is StartSSL) is confusing me. On production servers I'm using nginx as load balancer to…
Mamsaac
  • 6,173
  • 3
  • 21
  • 30
4
votes
2 answers

Client Certificates and Claims-Based Identity in Web API

If a client accessing an endpoint implemented as an ASP.NET Web API Controller over HTTPS provides a client certificate, that certificate is available through Request.GetClientCertificate. However, I'm wondering: is it possible to get information…
4
votes
1 answer

Can no longer ignore certificate errors during publishing in VS2012

I've been using the MSDeploy publishing service from Visual Studio to publish my projects. The publishing URL is https://machinename.domain.com:8172/MsDeploy.axd. It worked fine in VS2010 -- I was able to check a checkbox that said ignore…
Howard Pinsley
  • 11,300
  • 15
  • 49
  • 66
4
votes
2 answers

Encrypt a private key with Password using BouncyCastle

I am new to BouncyCastle. I have a private key generated using the below code. final CertAndKeyGen keypair = new CertAndKeyGen("RSA", "SHA1WithRSA", null); keypair.generate(1024); final PrivateKey privKey = keypair.getPrivateKey(); I…
Lolly
  • 34,250
  • 42
  • 115
  • 150
4
votes
1 answer

msxml server-side classic ASP and certificate

I have a classic ASP application that does a pretty simple server-side GET. I have used the same code for years and across hundreds of users without a problem. But, now just one user reports the following error: msxml3.dll error '80072f06' The host…
donchanger
  • 61
  • 1
  • 5
4
votes
0 answers

nginx ssl client certificates with signed root and intermediate

I am trying to set up ssl client authentication. I am using startssl as a CA if that makes any difference. I obtained a root certificate, an intermediate certificate, and a client certificate from startssl. I also have several s/mime certificates…
Mina Smart
  • 111
  • 6
4
votes
2 answers

How to make an HTTPS request using cURL?

I have 2 php scripts , to send an xml file and catch it. I am using cURL and everything was ok. Now i am trying to do the same but using HTTP over SSL (HTTPS). I have installed a local server with XAMPP and i have set up SSL by following this post :…
donparalias
  • 1,834
  • 16
  • 37
  • 60
4
votes
1 answer

How do I enable mutual SSL in IIS7 with a self-signed certificate?

I've created a self-signed certificate in IIS7. Then I exported this certificate to a .pfx and then installed it on the client machine's IE browser. Then I set "Require Client Certificate" on the server's IIS configuration. When I try to visit the…
Saturn K
  • 2,705
  • 4
  • 26
  • 38
4
votes
1 answer

Is CA certificate same client certificate?

Is CA certificate same client certificate? If not how can I get client certificate? If yes how can I use it as client certificate? Sorry for the dumb question. Thanks in advance.
lil
  • 336
  • 7
  • 19
4
votes
0 answers

Java code to generate private key and self signed certificate

Possible Duplicate: Generate certificates, public and private keys with Java I want to generate private key and self signed certificate using Java code and export it into files. When I searched through net I am getting details only achieving…
Lolly
  • 34,250
  • 42
  • 115
  • 150
4
votes
1 answer

Bad OpenSSL certificate

I am trying to make a fake CA and sign a certificate with it to use with stunnel (which just seems to be calling OpenSSL routines, so you probably don't need to know the program to help :). However, stunnel keeps rejecting my certificate saying that…
evilfred
  • 2,314
  • 4
  • 29
  • 44
4
votes
1 answer

Temporarily trusting self-signed certificates with NSURLConnection

I have an app that displays a warning to the user when they attempt to contact a server with a self-signed or otherwise untrusted SSL certificate. If they choose to proceed, we use connection:didReceiveAuthenticationChallenge to continue with the…
Wammer
  • 81
  • 3
4
votes
1 answer

Dynamic reload of Java Keystore

It is possible to reload the Java Keystore without restarting the Apache Tomcat Service? I would like to change the certificates and allow my application to reload this new certificate from the keystore and use it, without having to restarting…
jair1
  • 41
  • 2