默认情况下,NetTcpBinding会生成一个运行时通信堆栈,该堆栈使用传输安全。
NetTcpBinding类共有四个构造函数,分别如下:
q NetTcpBinding()。初始化NetTcpBinding类的新实例。
q NetTcpBinding(SecurityMode)。用所使用的指定安全类型初始化NetTcpBinding类的新实例。
q NetTcpBinding(String)。使用指定配置名称初始化NetTcpBinding类的新实例。
q NetTcpBinding(SecurityMode, Boolean)。用所使用的指定安全类型和一个指示是否显式启用安全会话的值来初始化NetTcpBinding类的新实例。
NetTcpBinding类有一个类型为NetTcpSecurity的属性,名为Security。NetTcpSecurity指定用NetTcpBinding配置的终结点所使用的传输级安全性和消息级安全性的类型。代码清单11-8是NetTcpSecurity的定义(部分成员)。
代码清单11-8 NetTcpSecurity定义
public sealed class NetTcpSecurity { // Fields internal const SecurityMode DefaultMode = SecurityMode.Transport; // Methods public NetTcpSecurity(); public MessageSecurityOverTcp Message {get; set; } public SecurityMode Mode { get; set; } public TcpTransportSecurity Transport { get; set; } }
从以上代码可以知道,NetTcpSecurity为NetTcpBinding设置安全模式,并根据安全模式指定传输和消息安全细节。同时,可以看到默认情况下,NetTcpSecurity为NetTcpBinding设置的传输安全类型为Transport。若安全类型为Transport,那么需要设置TcpTransportSecurity属性的值,TcpTransportSecurity的定义如代码清单11-9所示。
代码清单11-9 TcpTransportSecurity定义(部分代码)
public sealed class TcpTransportSecurity { internal const TcpClientCredentialType DefaultClientCredentialType = TcpClientCredentialType.Windows; internal const ProtectionLevel DefaultProtectionLevel = ProtectionLevel.EncryptAndSign; [DefaultValue(1)] public TcpClientCredentialType ClientCredentialType { get; set; } public ExtendedProtectionPolicy ExtendedProtectionPolicy { get; set; } [DefaultValue(2)] public ProtectionLevelProtectionLevel { get; set; } }
以上代码公开了TcpTransportSecurity的三个属性,其中ClientCredentialType属性用来获取或设置用于身份验证的客户端凭据类型;ExtendedProtectionPolicy属性用来获取或设置 TCP 传输的扩展保护策略;ProtectionLevel用来设置保护级别。在默认情况下,客户端凭据类型设置为Windows,保护级别为EncryptAndSign。
下面的系列博文通过实例来探究NetTcpBinding下的安全配置。
---------------------------------------注:本文部分内容改编自《.NET 安全揭秘》
作者:玄魂
出处:http://www.cnblogs.com/xuanhun/
查看本栏目更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/net/
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索安全
, 代码
, 传输
, 类型
, public
, transport
get模式
wcf nettcpbinding、wcf binding、wcf wshttpbinding、wcf binding类型、wcf basichttpbinding,以便于您获取更多的相关知识。