BraintreeEncryption.Library.BouncyCastle.Crypto.Util.Pack.UInt64_To_BE C# (CSharp) Метод

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

static private UInt64_To_BE ( ulong n, byte bs ) : void
n ulong
bs byte
Результат void
        internal static void UInt64_To_BE(ulong n, byte[] bs)
        {
            UInt32_To_BE((uint)(n >> 32), bs);
            UInt32_To_BE((uint)(n      ), bs, 4);
        }

Same methods

Pack::UInt64_To_BE ( ulong n, byte bs, int off ) : void