Inheritance: SignatureSubpacket
        private void checkValue(byte[] flag, int val)
        {
            KeyFlags f = new KeyFlags(true, flag);

            if (f.Flags != val)
            {
                Fail("flag value mismatch");
            }
        }
Example #2
0
		public KeyFlags(bool critical, int flags) : base(SignatureSubpacketTag.KeyFlags, critical, KeyFlags.IntToByteArray(flags))
		{
		}