Rotates the bits of an unsigned integer.

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

Syntax

C#
public static uint RotateRight(
	uint x,
	int shift
)
Visual Basic
Public Shared Function RotateRight ( _
	x As UInteger, _
	shift As Integer _
) As UInteger
Visual C++
public:
static unsigned int RotateRight(
	unsigned int x, 
	int shift
)

Parameters

x
Type: System..::..UInt32
The unsigned integer to rotate.
shift
Type: System..::..Int32
How many bits to rotate.

Return Value

The rotated unsigned integer.

See Also