C# Class ClientLauncher.LauncherEncryption

Mostrar archivo Open project: swganhtools/swganhclientlauncher Class Usage Examples

Public Methods

Method Description
CompareArrays ( byte arFirstArray, byte arSecondArray ) : bool

Compares the bytes in two arrays to check for equality

Decrypt ( byte arDecryptMe ) : byte[]
Encrypt ( byte arEncryptMe ) : byte[]
LauncherEncryption ( ) : System
MD5Bytes ( byte arInputBytes ) : byte[]

Private Methods

Method Description
EncryptDecrypt ( byte arCryptoBytes, CryptographicDirection theDirection ) : byte[]

Method Details

CompareArrays() public method

Compares the bytes in two arrays to check for equality
public CompareArrays ( byte arFirstArray, byte arSecondArray ) : bool
arFirstArray byte
arSecondArray byte
return bool

Decrypt() public method

public Decrypt ( byte arDecryptMe ) : byte[]
arDecryptMe byte
return byte[]

Encrypt() public method

public Encrypt ( byte arEncryptMe ) : byte[]
arEncryptMe byte
return byte[]

LauncherEncryption() public method

public LauncherEncryption ( ) : System
return System

MD5Bytes() public method

public MD5Bytes ( byte arInputBytes ) : byte[]
arInputBytes byte
return byte[]