DecryptBlock Method

Lidgren.Network

Collapse imageExpand ImageCopy imageCopyHover image
Decrypts a block of bytes

Namespace: Lidgren.Network
Assembly: Lidgren.Network (in Lidgren.Network.dll) Version: 2012.1.7.0 (2012.1.7.0)

Syntax

C#
protected override void DecryptBlock(
	byte[] source,
	int sourceOffset,
	byte[] destination
)
Visual Basic
Protected Overrides Sub DecryptBlock ( _
	source As Byte(), _
	sourceOffset As Integer, _
	destination As Byte() _
)
Visual C++
protected:
virtual void DecryptBlock(
	array<unsigned char>^ source, 
	int sourceOffset, 
	array<unsigned char>^ destination
) override

Parameters

source
Type: array<System..::..Byte>[]()[][]

[Missing <param name="source"/> documentation for "M:Lidgren.Network.NetXtea.DecryptBlock(System.Byte[],System.Int32,System.Byte[])"]

sourceOffset
Type: System..::..Int32

[Missing <param name="sourceOffset"/> documentation for "M:Lidgren.Network.NetXtea.DecryptBlock(System.Byte[],System.Int32,System.Byte[])"]

destination
Type: array<System..::..Byte>[]()[][]

[Missing <param name="destination"/> documentation for "M:Lidgren.Network.NetXtea.DecryptBlock(System.Byte[],System.Int32,System.Byte[])"]

See Also