namespace com.hitrust.util.Zip
|
|
{
|
|
using System;
|
|
|
|
[Flags]
|
|
public enum GeneralBitFlags
|
|
{
|
|
Descriptor = 8,
|
|
Encrypted = 1,
|
|
EnhancedCompress = 0x1000,
|
|
HeaderMasked = 0x2000,
|
|
Method = 6,
|
|
Patched = 0x20,
|
|
ReservedPkware14 = 0x4000,
|
|
ReservedPkware15 = 0x8000,
|
|
ReservedPKware4 = 0x10,
|
|
StrongEncryption = 0x40,
|
|
UnicodeText = 0x800,
|
|
Unused10 = 0x400,
|
|
Unused7 = 0x80,
|
|
Unused8 = 0x100,
|
|
Unused9 = 0x200
|
|
}
|
|
}
|
|
|