Org.BouncyCastle.Crypto.Engines.TeaEngine.setKey C# (CSharp) Method

setKey() private method

private setKey ( byte key ) : void
key byte
return void
		private void setKey(
			byte[] key)
		{
			_a = Pack.BE_To_UInt32(key, 0);
			_b = Pack.BE_To_UInt32(key, 4);
			_c = Pack.BE_To_UInt32(key, 8);
			_d = Pack.BE_To_UInt32(key, 12);
		}