Is it possible to use this crate to implement a secure websocket server that can be accessed via the wss:// protocol?
This is not because I send sensible data over this websocket (only arrays of numbers, in fact), but that it is not possible to use insecure WebSockets in https contexts. Any website that does not use https will be deemed insecure (for good reason), which means that I would now have to switch to another crate just because of this. Or is there some possibiliy I wasn't aware of?
Is it possible to use this crate to implement a secure websocket server that can be accessed via the
wss://
protocol?This is not because I send sensible data over this websocket (only arrays of numbers, in fact), but that it is not possible to use insecure WebSockets in https contexts. Any website that does not use https will be deemed insecure (for good reason), which means that I would now have to switch to another crate just because of this. Or is there some possibiliy I wasn't aware of?