本文介绍了.NET是否支持TLS-PSK?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我看到有一个 SslStream .NET框架中.此流是否支持 TLS-PSK ?如果是,如何设置预共享密钥?
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?
如果没有,是否可以在.NET应用程序中使用其他一些类或库来支持TLS-PSK?
If not, is there some other class or library I can use to support TLS-PSK in my .NET application?
推荐答案
查看SslStream的方法和属性,它不支持PSK密码套件.
Looking at SslStream's methods and properties, it doesn't support PSK ciphersuites.
我们的 SecureBlackbox 支持PSK密码套件.
Our SecureBlackbox supports PSK ciphersuites.
这篇关于.NET是否支持TLS-PSK?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!