Rotates the bits of an unsigned long integer.

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

Syntax

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

Parameters

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

Return Value

The rotated unsigned long integer.

See Also