PHP.Library.PhpHash.HashPhpResource.SHA256.SHR(int, uint)

Here are the examples of the csharp api class PHP.Library.PhpHash.HashPhpResource.SHA256.SHR(int, uint) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: Phalanger
Source File: Hash.cs
View license
private static uint SHA256_F4(uint x) { return unchecked(ROTR32(7, (x)) ^ ROTR32(18, (x)) ^ SHR(3, (x))); }

2. Example

Project: Phalanger
Source File: Hash.cs
View license
private static uint SHA256_F5(uint x) { return unchecked(ROTR32(17, (x)) ^ ROTR32(19, (x)) ^ SHR(10, (x))); }