Are there any examples of connecting BC's TLS library to an actual HTTP
server? Preferably in C#?
I have a working toy TLS server that successfully handshakes with a simple
CLI client. However, it fails when I connect to it with Chrome ("Attempted
to read past the end of the stream").
I *suspect* this is because Chrome is making two simultaneous TLS
connections to my server and my wrapper isn't handling that correctly. I'm
not experienced with network server code, so I was hoping I could model my
code after someone else's example.