NBitcoin.BouncyCastle.Crypto.Parameters.KeyParameter.KeyParameter C# (CSharp) Method

KeyParameter() public method

public KeyParameter ( byte key ) : System
key byte
return System
		public KeyParameter(
			byte[] key)
		{
			if(key == null)
				throw new ArgumentNullException("key");

			this.key = (byte[])key.Clone();
		}

Same methods

KeyParameter::KeyParameter ( byte key, int keyOff, int keyLen ) : System