Does .NET support TLS-PSK?

2019-08-02 04:54发布

问题:

I see that there is a SslStream in the .NET framework. Does this stream support TLS-PSK? If yes, how do I set up the preshared key?

If not, is there some other class or library I can use to support TLS-PSK in my .NET application?

回答1:

Looking at SslStream's methods and properties, it doesn't support PSK ciphersuites.

Our SecureBlackbox supports PSK ciphersuites.



标签: .net ssl