Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest.copyBitLength C# (CSharp) Method

copyBitLength() private method

private copyBitLength ( ) : byte[]
return byte[]
		private byte[] copyBitLength()
		{
			byte[] rv = new byte[BITCOUNT_ARRAY_SIZE];
			for (int i = 0; i < rv.Length; i++)
			{
				rv[i] = (byte)(_bitCount[i] & 0xff);
			}
			return rv;
		}