博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WCF NetTcpBinding Transport安全模式(1)NetTcpSecurity定义
阅读量:6449 次
发布时间:2019-06-23

本文共 1832 字,大约阅读时间需要 6 分钟。

WCF NetTcpBinding Transport安全模式(1)NetTcpSecurity定义

默认情况下,NetTcpBinding会生成一个运行时通信堆栈,该堆栈使用传输安全。

NetTcpBinding类共有四个构造函数,分别如下:

q  NetTcpBinding()。初始化NetTcpBinding新实例。

q  NetTcpBinding(SecurityMode)。用所使用指定安全类型初始化NetTcpBinding新实例。

q  NetTcpBinding(String)。使用指定配置名称初始化NetTcpBinding新实例。

q  NetTcpBinding(SecurityMode, Boolean)用所使用指定安全类型和一个指示是否显式启用安全会话值来初始化NetTcpBinding新实例。

NetTcpBinding类有一个类型为NetTcpSecurity属性,名为SecurityNetTcpSecurity指定用NetTcpBinding配置终结点所使用传输级安全性和消息级安全性类型。代码清单11-8NetTcpSecurity定义(部分成员)。

代码清单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; }

}

从以上代码可以知道,NetTcpSecurityNetTcpBinding设置安全模式,并根据安全模式指定传输和消息安全细节。同时,可以看到默认情况下,NetTcpSecurityNetTcpBinding设置传输安全类型为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://jalwo.baihongyu.com/

你可能感兴趣的文章
getopt_long的用法
查看>>
Ruby 数组操作
查看>>
linux系统日志
查看>>
tinyxml 用法
查看>>
MySQL数据库性能优化之存储引擎选择
查看>>
网络部署Xenserver6.5
查看>>
8.使用Xshell5密钥登录liunx
查看>>
zookeeper NIOServerCnxn: Too many connections from
查看>>
mysql数据库-简述
查看>>
keepalived+nginx实现双机热备
查看>>
linux远程登录ssh免密码
查看>>
Dojo学习笔记(八):Dojo布局——面板
查看>>
linux挂载ntfs
查看>>
SQLServer判断指定列的默认值是否存在,并修改默认值
查看>>
heartbeat+drbd+mysql:实现最廉价的高可用组合
查看>>
解决NGINX+PHP-FPM failed to ptrace(PEEKDATA) Input/output error出错问题
查看>>
splice和sendfile
查看>>
基于rsync+inotify实现数据实时同步传输
查看>>
【No.11 默认实参的匹配】
查看>>
一键生成表结构说明文档的参考,数据字典生成方式参考
查看>>