Org.BouncyCastle.Crypto.Engines.IdeaEngine.WordToBytes C# (CSharp) Method

WordToBytes() private method

private WordToBytes ( int word, byte outBytes, int outOff ) : void
word int
outBytes byte
outOff int
return void
        private void WordToBytes(
            int     word,
            byte[]  outBytes,
            int     outOff)
        {
            outBytes[outOff] = (byte)((uint) word >> 8);
            outBytes[outOff + 1] = (byte)word;
        }
        /**