From 749e0254814f3413f3fd2bf88dfe38423e761712 Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Mon, 6 Jan 2020 16:44:16 +0000 Subject: [PATCH] Add a ZipConstants entry for the size of the zip64 end of central directory locator --- src/ICSharpCode.SharpZipLib/Zip/ZipConstants.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ICSharpCode.SharpZipLib/Zip/ZipConstants.cs b/src/ICSharpCode.SharpZipLib/Zip/ZipConstants.cs index 3e34294d8..9e0a8764a 100644 --- a/src/ICSharpCode.SharpZipLib/Zip/ZipConstants.cs +++ b/src/ICSharpCode.SharpZipLib/Zip/ZipConstants.cs @@ -345,6 +345,11 @@ public static class ZipConstants [Obsolete("Use CryptoHeaderSize instead")] public const int CRYPTO_HEADER_SIZE = 12; + /// + /// The size of the Zip64 central directory locator. + /// + public const int Zip64EndOfCentralDirectoryLocatorSize = 20; + #endregion Header Sizes #region Header Signatures