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

How to convert a SHA256RSA signed Server certificate to SHA1RSA?

I am generating a private key with tomcat keystore. After the certificate request is generated and submitted, the server certificate seems to have signature SHA256RSA algorithm and eventually gives a "cannot establish chain from reply error". The…
dcoder
  • 51
  • 1
  • 4
4
votes
1 answer

How to create a Private-Key exportable self-signed certificate?

I've tried the below template which creates the certificate and installs it in the localmachine Personal certificate store: makecert -sk <> -iv RootCATest.pvk -n "CN=<>" -ic RootCATest.cer -sr localmachine -ss my -sky…
The Light
  • 26,341
  • 62
  • 176
  • 258
4
votes
1 answer

Why don't Google's MX servers match the SSL certificate CN?

Before sending an email to a google account my script looked up the MX records for google's email servers. The results…
Xeoncross
  • 55,620
  • 80
  • 262
  • 364
4
votes
1 answer

push ssl certificate missing private key in keychain

I'm updating some apps on the app store in order to integrate Push notification and I have problems with the push ssl certificates. When I created the apps without push, I used wildcard App ID like myradio.* and then I created new explicit App ID…
egdev
  • 41
  • 1
4
votes
1 answer

Qt on OSX 10.5.8: "The root CA certificate is not trusted for this purpose"

I have a Qt application which succeeds in making an HTTPS request to our website on OSX 10.7, but fails on 10.5.8 with the QSslError::errorString "The root CA certificate is not trusted for this purpose". I am setting the root certificate…
ctd
  • 1,693
  • 12
  • 27
4
votes
2 answers

Does Google App Engine support 256-bit SSL certificates?

I've installed a certificate for a Google App Engine project using Virtual IP (VIP) as explained here: https://developers.google.com/appengine/docs/ssl The certificate will use 256-bit encryption if the server supports it, but is currently using…
Aaron Hampton
  • 884
  • 8
  • 26
4
votes
1 answer

Client certificate issuer (thumbprint) in MVC

In MVC application I need to verify that the client certificate was signed/issued by a specific CA. I know how to get Request.ClientCertificate and X509Certificate2 from that, but I can't figure out how to check the…
Jabolcna Pita
  • 73
  • 1
  • 4
4
votes
2 answers

Why is my iOS Profile "Not Trusted"?

I have created a CA, server and client certificates with OpenSSL for my application. When I look under profiles, the root CA shows up as "Trusted", but my server and client certificates (which are signed by my CA) show up as "Not Trusted". These…
Brad
  • 11,262
  • 8
  • 55
  • 74
4
votes
1 answer

Heroku - DNSimple configuration

Trying to set up SSL to work on mydomain.com. Following Heroku documentation I have managed get the SSL working on https://secure.mydomain.com. However actual endpoint created by heroku when i added the SSL is still saying **Heroku | No such…
Benjamin
  • 2,108
  • 2
  • 26
  • 46
4
votes
2 answers

Renewing SSL on Heroku & Getting, "Pem is invalid / Key doesn't match the PEM certificate"

I see that people have had issues in the past with Heroku and SSL and matching .pem certs (like this: Heroku SSL error: key doesn't match PEM certificate). However, our site has had ssl running fine, until it expired. We renewed with GoDaddy and…
zkidd
  • 513
  • 1
  • 5
  • 18
4
votes
1 answer

Certificate Memory Leak

I'm using .NET 3.5. I'm experiencing a memory leak when creating a reference to a X509Certificate. I'm using ANTS profiler to analyse the results and the private bytes are increasing while the bytes in the heap remain static (indicating it's a…
CorribView
  • 711
  • 1
  • 19
  • 44
4
votes
1 answer

SSL Client Cert Verification optimisation

We currently have a group of web-services exposing interfaces to a variety of different client types and roles. Background: Authentication is handled through SSL Client Certificate Verification. This is currently being done in web-service code…
David-SkyMesh
  • 5,041
  • 1
  • 31
  • 38
4
votes
1 answer

SSL Settings : Ignore Client Certificates

I'm a little bit confused about what the client certificates all about. I have set to "IGNORE" the client certificates on my SSL Settings. But i'm worrying if its ok or not. Can someone explain to me the difference or importance/advantages of those…
SyntaxError
  • 3,717
  • 6
  • 30
  • 31
4
votes
0 answers

SSL wildcard Certificate to Heroku

I just recently added the SSL Endpoint add-on to my "example" app, and updated my SSL Cert and Private Key from DNSimple to Heroku (according to this article: http://ryan.mcgeary.org/2011/09/16/how-to-add-a-dnsimple-ssl-certificate-to-heroku/ )…
T5i
  • 1,470
  • 1
  • 18
  • 34
4
votes
2 answers

How can I trust a specific self-sign certificates? (Not trust all)

How can I set my HttpsURLConnection to trust a specific certificate only? Currently my code is set to trust all certificates. But the requirement is to trust only a specific certificate and do not trust the others. How can I do it in Java? I'm using…
Arci
  • 6,647
  • 20
  • 70
  • 98
1 2 3
99
100