Does dart support SSL / TLS client connections yet?

I am thinking of writing an Apple Push Notification server using Dart. Does Dart support SSL / TLS certificates on the client side?

+5
source share
2 answers

Yes! Dart VM now supports SSL / TLS and HTTPS.

See the http://code.google.com/p/dart/issues/detail?id=3950 and http://code.google.com/p/dart/issues/detail?id=3593 that are now closed .: )

+2
source

Dart SSL/TLS SecureSocket. , SecureServerSocket ( , ).

, HttpClient HTTPS , .

+1

All Articles