BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Rfc7748.X25519Field.Decode32 C# (CSharp) Метод

Decode32() приватный статический Метод

private static Decode32 ( Array bs, int off ) : uint
bs Array
off int
Результат uint
        private static uint Decode32(byte[] bs, int off)
        {
            uint n = bs[off];
            n |= (uint)bs[++off] << 8;
            n |= (uint)bs[++off] << 16;
            n |= (uint)bs[++off] << 24;
            return n;
        }