system\security\cryptography\sha256managed.cs (10)
317return (RotateRight(x,7) ^ RotateRight(x,18) ^ (x >> 3));
321return (RotateRight(x,17) ^ RotateRight(x,19) ^ (x >> 10));
325return (RotateRight(x,2) ^ RotateRight(x,13) ^ RotateRight(x,22));
329return (RotateRight(x,6) ^ RotateRight(x,11) ^ RotateRight(x,25));