Class AesEcryptionSettings

Class AesEcryptionSettings

Namespace: Aspose.Zip.Saving
Assembly: Aspose.Zip.dll (25.12.0)

Settings for AES encryption and decryption algorithms within a ZIP archive.

public class AesEcryptionSettings : EncryptionSettings

Inheritance

object EncryptionSettings AesEcryptionSettings

Inherited Members

EncryptionSettings.Method , EncryptionSettings.Password , object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Constructors

AesEcryptionSettings(string, EncryptionMethod)

Initializes a new instance of the Aspose.Zip.Saving.AesEcryptionSettings class.

public AesEcryptionSettings(string password, EncryptionMethod method)

Parameters

password string

Password for encryption or decryption.

method EncryptionMethod

Algorithm option indicating block size of cipher.

Examples

using (var archive = new Archive(new ArchiveEntrySettings(null, new AesEcryptionSettings("p@s$", EncryptionMethod.AES256))))
{
   archive.CreateEntry("data.bin", "data.bin");
   archive.Save("archive.zip");
}

Exceptions

NotSupportedException

method is not one of Aspose.Zip.Saving.EncryptionMethod.AES128, Aspose.Zip.Saving.EncryptionMethod.AES192, or Aspose.Zip.Saving.EncryptionMethod.AES256.

AesEcryptionSettings(EncryptionMethod)

Initializes a new instance of the Aspose.Zip.Saving.AesEcryptionSettings class without a password.

public AesEcryptionSettings(EncryptionMethod method)

Parameters

method EncryptionMethod

Algorithm option indicating block size of cipher.

 English