RotateRight() private static method

private static RotateRight ( uint x, int bits ) : uint
x uint
bits int
return uint
示例#1
0
 private static uint F2(uint x)
 {
     return(HC128Engine.RotateRight(x, 17) ^ HC128Engine.RotateRight(x, 19) ^ x >> 10);
 }
示例#2
0
 private uint G1(uint x, uint y, uint z)
 {
     return((HC128Engine.RotateRight(x, 10) ^ HC128Engine.RotateRight(z, 23)) + HC128Engine.RotateRight(y, 8));
 }
示例#3
0
 private static uint F1(uint x)
 {
     return(HC128Engine.RotateRight(x, 7) ^ HC128Engine.RotateRight(x, 18) ^ x >> 3);
 }