using System.Text; namespace SharpCompress.Common { public static class ArchiveEncoding { /// /// Default encoding to use when archive format doesn't specify one. /// public static Encoding Default { get; set; } /// /// Encoding used by encryption schemes which don't comply with RFC 2898. /// public static Encoding Password { get; set; } static ArchiveEncoding() { Default = Encoding.UTF8; Password = Encoding.UTF8; } } }