Questions tagged [tls1.2]

Transport Layer Security (TLS) is a cryptographic protocol designed to provide communications security over a computer network.

Transport Layer Security (TLS) is a cryptographic protocol designed to provide communications security over a computer network.

https://en.wikipedia.org/wiki/Transport_Layer_Security#TLS_1.2

2664 questions
25
votes
1 answer

When was TLS 1.2 support added to OpenSSL?

Does OpenSSL 0.9.8x support TLS1.2? I looked at the changelog for OpenSSL but didn't find any information on this: https://www.openssl.org/news/changelog.html
Reid
  • 476
  • 1
  • 5
  • 16
23
votes
2 answers

Docker container running golang http.Client getting error `certificate signed by unknown authority`

I created a docker container for talking to the google api using GoLang. I started off using a SCRATCH container and am getting the error certificate signed by unknown authority upon changing to ubuntu/alpine i still get the error. resp, err :=…
Westy10101
  • 621
  • 1
  • 8
  • 20
23
votes
3 answers

Enable TLSv1.2 and TLS_RSA_WITH_AES_256_CBC_SHA256 Cipher Suite

Server: TLS Version: v1.2 Cipher Suite: TLS_RSA_WITH_AES_256_CBC_SHA256 Client: JRE 1.7 I am receiving the below error when I try to connect to the Server from Client through SSL directly: Caused by: javax.net.ssl.SSLHandshakeException: Received…
Ashok Goli
  • 4,708
  • 7
  • 32
  • 62
22
votes
4 answers

Command prompt to check TLS version required by a host

Is there a command to check the TLS version reuired by a host site. Right now, the only way I know to check is by adjusting the max TLS version of my browser and checking if I can still access the site. However, I suspect there is a more…
LakeMichigan
  • 327
  • 1
  • 4
  • 11
21
votes
6 answers

Android pre-lollipop devices giving error "SSL handshake aborted: ssl=0x618d9c18: I/O error during system call, Connection reset by peer"

Iam having this strange issue in which the retrofit keeps throwing me "SSL handshake aborted: ssl=0x618d9c18: I/O error during system call, Connection reset by peer" in kitkat, whereas the same code working fine in lollipop devices. Iam using…
20
votes
3 answers

C# and dotnet 4.7.1 not adding custom certificate for TLS 1.2 calls

I have the following C# code, constructing an https call with a custom certificate. When using Tls 1.1, the call works fine. When using Tls 1.2 the call breaks. I using curl, using tls 1.2 works fine as well. C# Code: X509Certificate2Collection…
Stephan Møller
  • 1,023
  • 17
  • 34
20
votes
5 answers

Does Microsoft OLE DB Provider for SQL Server support TLS 1.2

Our client recently upgraded from TLS 1.0 to TLS 1.2 and after this our software cannot connect with SQL server. It uses OLE DB provider for connecting to SQL server. Below is the error which is returned from SQL server- [DBNETLIB][ConnectionOpen…
Amit Rastogi
  • 714
  • 1
  • 8
  • 21
19
votes
2 answers

Domain=NSURLErrorDomain Code 1202

Hi I receive the following error: Error Domain=NSURLErrorDomain Code=-1202 \"The certificate for this server is invalid. You might be connecting to a server that is pretending to be “server-prod.name-cloud.com” which could put your confidential…
Bar
  • 543
  • 1
  • 6
  • 19
18
votes
4 answers

Best way for verifying server compliance to Apple's ATS / TLS 1.2 requirement

So Apple requires TLS 1.2 with Forward Secrecy for URLs beginning iOS 9. Independent of the app, what's the best way to verify that a server meets all the requirements? nscurl just outright doesn't work - or I don't know how to use it. My output…
Hampden123
  • 1,230
  • 1
  • 14
  • 16
17
votes
1 answer

ios13 tls certificates issue - connection error

Since the release of ios13 I have a strange problem in my iOS app due to tls connection error to my backend. If I try to connect to the backend via the simulator (iOS 13) it works fine, if I install the app on the physical device (iOS 13.1) I can't…
16
votes
2 answers

iOS push notifications using TLS certificate vs. using authentication tokens

I am reading the documentation for both push using TLS certificates and push using authentication tokens But besides explaining how to configure each, the articles don't really explain the differences or pros/cons of both approaches. Can somebody…
David Schumann
  • 9,116
  • 6
  • 56
  • 78
16
votes
2 answers

Can a TLS 1.2 server/client get by with just TLS_RSA_WITH_AES_128_CBC_SHA?

I'm updating an embedded TLS 1.0 implementation to TLS 1.2 (devices with 1MB of code space or less, and no OS). At this point, I have AES-128 and AES-256 CBC ciphers working with SHA-1 and SHA-256 digests for a minimal implementation. The library…
tomlogic
  • 10,909
  • 3
  • 29
  • 57
16
votes
3 answers

Unable to access https web service from iOS

I am trying to access a web service which is available on https protocol. Initially I was getting following error: NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802) errorAn SSL error has occurred and a secure…
pankaj
  • 6,694
  • 15
  • 60
  • 108
15
votes
4 answers

Securing Kubernetes Service with TLS

I have an application that is internal and exposed only to other application on the cluster by a service with cluster IP. Other services are accessing this application via it's DNS (serviceName-namespace.svc.cluster.local). This application handles…
15
votes
5 answers

System.Net.SecurityProtocolType.Tls12 definition not found

I'm trying to add the following line of code to the Global.asax file in a website project. System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls12; The vs2012 IntelliSense is showing that Tls12 definition exist. But…
HockChai Lim
  • 1,331
  • 1
  • 13
  • 26