Decrypts a single block.

Namespace: LLCryptoLib.Crypto
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public void DecryptBlock(
	uint hi,
	uint lo,
	out uint outHi,
	out uint outLo
)
Visual Basic
Public Sub DecryptBlock ( _
	hi As UInteger, _
	lo As UInteger, _
	<OutAttribute> ByRef outHi As UInteger, _
	<OutAttribute> ByRef outLo As UInteger _
)
Visual C++
public:
void DecryptBlock(
	unsigned int hi, 
	unsigned int lo, 
	[OutAttribute] unsigned int% outHi, 
	[OutAttribute] unsigned int% outLo
)

Parameters

hi
Type: System..::..UInt32
The high 32bit word of the block.
lo
Type: System..::..UInt32
The low 32bit word of the block.
outHi
Type: System..::..UInt32%
Where to put the decrypted high word.
outLo
Type: System..::..UInt32%
Where to put the decrypted low word.

See Also