初始化上传
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
namespace ICSharpCode.SharpZipLib.Zip
|
||||
{
|
||||
/// <summary>
|
||||
/// The method of encrypting entries when creating zip archives.
|
||||
/// </summary>
|
||||
public enum ZipEncryptionMethod
|
||||
{
|
||||
/// <summary>
|
||||
/// No encryption will be used.
|
||||
/// </summary>
|
||||
None,
|
||||
|
||||
/// <summary>
|
||||
/// Encrypt entries with ZipCrypto.
|
||||
/// </summary>
|
||||
ZipCrypto,
|
||||
|
||||
/// <summary>
|
||||
/// Encrypt entries with AES 128.
|
||||
/// </summary>
|
||||
AES128,
|
||||
|
||||
/// <summary>
|
||||
/// Encrypt entries with AES 256.
|
||||
/// </summary>
|
||||
AES256
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user