.Net Core 和 SSL jet 可以用 StreamSocket/RESTful/SignalR 作为 Server/Client?

.Net Core and SSL jet possible with StreamSocket/RESTful/SignalR as Server/Client?

我问自己是否有任何方法可以通过在 UWP 上加密的 SSL 发送数据。因为我必须将从 Raspberry Pi 3 (Windows IoT) 加密的数据发送到服务器。

有人知道这是否可能吗?如果你能给我发一个 link 到 sample/tutorial 吗?谢谢

在 UWP 中,您可以使用不同的技术来发送 SSL 数据。如果您需要使用 HTTPS 进行通信,Windows.Web.Http.HttpClient 将是最佳选择,因为它提供了 SSL 方面的最佳功能(更多详细信息 here). You can also use secure sockets as described here (also the sample code for using secure sockets is available in UWP Samples on GitHub)。