Org.BouncyCastle.Crypto.Engines.TeaEngine.setKey C# (CSharp) 메소드

setKey() 개인적인 메소드

private setKey ( byte key ) : void
key byte
리턴 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);
		}