C# Class SiteView.Panel.DataManager

显示文件 Open project: SiteView/ECC8.13

Public Methods

Method Description
Compress ( FileStream inStream, FileStream outStream ) : bool

压缩数据

DataManager ( ) : System

构造对象

Decompress ( FileStream inStream, FileStream outStream ) : bool

解压数据

Decrypt ( byte DecryptByte, byte &outByte ) : bool

数据解密

Encrypt ( byte EncryptByte, byte &outByte ) : bool

数据加密

Method Details

Compress() public static method

压缩数据
public static Compress ( FileStream inStream, FileStream outStream ) : bool
inStream System.IO.FileStream 输入的数据流
outStream System.IO.FileStream 压缩后输出的数据流
return bool

DataManager() public method

构造对象
public DataManager ( ) : System
return System

Decompress() public static method

解压数据
public static Decompress ( FileStream inStream, FileStream outStream ) : bool
inStream System.IO.FileStream 输入的数据流
outStream System.IO.FileStream 解压后输出的数据流
return bool

Decrypt() public static method

数据解密
public static Decrypt ( byte DecryptByte, byte &outByte ) : bool
DecryptByte byte 要解密的字节数组
outByte byte
return bool

Encrypt() public static method

数据加密
public static Encrypt ( byte EncryptByte, byte &outByte ) : bool
EncryptByte byte 要加密的字节数组
outByte byte
return bool