BraintreeEncryption.Library.BouncyCastle.Crypto.Util.Pack.LE_To_UInt64 C# (CSharp) Method

LE_To_UInt64() static private method

static private LE_To_UInt64 ( byte bs ) : ulong
bs byte
return ulong
        internal static ulong LE_To_UInt64(byte[] bs)
        {
            uint lo = LE_To_UInt32(bs);
            uint hi = LE_To_UInt32(bs, 4);
            return ((ulong)hi << 32) | (ulong)lo;
        }

Same methods

Pack::LE_To_UInt64 ( byte bs, int off ) : ulong