namespace com.hitrust.util.Zip
|
|
{
|
|
using System;
|
|
|
|
public enum CompressionMethod
|
|
{
|
|
BZip2 = 11,
|
|
Deflate64 = 9,
|
|
Deflated = 8,
|
|
Stored = 0,
|
|
WinZipAES = 0x63
|
|
}
|
|
}
|
|
|