Reputation: 89
I am using Aspnetcore 2.0 MVC with entityframework. I am uploading file to Azure file storage service suing Microsoft Azure storage service. Thanks to earlier post in this blog.
Want to know whether this uses TLS 2.0 to upload files to Azure, if yes , then how can i identify ?
Upvotes: 1
Views: 81
Reputation: 18465
Want to know whether this uses TLS 2.0 to upload files to Azure, if yes , then how can i identify ?
For a simple way, you could use SSL Server Test to check the supported SSL version on your server side.
Here, I checked my file storage host name: brucchstorage.file.core.windows.net
.
Note: The latest TLS version supported by file storage server side is TLS1.2, and the TLS1.3 is not supported for now.
For uploading files to azure file storage, you may leverage the client library WindowsAzure.Storage which internally uses File Service REST API against http(s)://<account>.file.core.windows.net
host name.
In summary, the supported maximum version of TLS on the Azure file storage server side is TLS1.2, so the maximum TLS version between your application and file storage server is TLS1.2. Details you could leverage the network analyzer (e.g. Wireshark, Microsoft Network Monitor,etc.) to parse the headers of SSL/TLS packets and show you the detailed info.
Upvotes: 0