terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ Password

string Ionic.Zip.ZipEntry.Password
setprivate get

Definition at line 618 of file ZipEntry.cs.

619 {
620 private get
621 {
622 return this._Password;
623 }
624 set
625 {
627 if (value == null)
628 {
629 return;
630 }
631 ZipEntrySource source = this._Source;
632 if (!this._sourceIsEncrypted)
633 {
635 }
636 if (this._Encryption != EncryptionAlgorithm.None)
637 {
638 return;
639 }
640 this._Encryption = EncryptionAlgorithm.PkzipWeak;
641 }
642 }
class f__AnonymousType0<< Count > j__TPar
ZipEntrySource _Source
Definition ZipEntry.cs:2459
EncryptionAlgorithm _Encryption
Definition ZipEntry.cs:2462