Class AesEcryptionSettings

Class AesEcryptionSettings

Το όνομα: Aspose.Zip.Saving Συγκέντρωση: Aspose.Zip.dll (25.5.0)

Κλάση βάσης για τις ρυθμίσεις για διάφορες μεθόδους κρυπτογράφησης zip.

public class AesEcryptionSettings : EncryptionSettings

Inheritance

object EncryptionSettings AesEcryptionSettings

Κληρονομημένα μέλη

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

Remarks

Δείτε περισσότερα στο https://www.winzip.com/win/en/aes_info.html

Constructors

AesEcryptionSettings(Κρυπτογράφηση, κρυπτογράφηση)

Αρχίζει μια νέα περίπτωση της κατηγορίας Aspose.Zip.Saving.AesEcryptionSettings.

public AesEcryptionSettings(string password, EncryptionMethod method)

Parameters

password string

Ο κωδικός πρόσβασης για κρυπτογράφηση ή αποκρυπτογράφηση.

method EncryptionMethod

Η επιλογή αλγόριθμου που υποδεικνύει το μέγεθος του μπλοκ του 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)

Αρχίζει μια νέα περίπτωση της κατηγορίας Aspose.Zip.Saving.AesEcryptionSettings χωρίς κωδικό πρόσβασης.

public AesEcryptionSettings(EncryptionMethod method)

Parameters

method EncryptionMethod

Η επιλογή αλγόριθμου που υποδεικνύει το μέγεθος του μπλοκ του cipher.

 Ελληνικά