5 references to Signature
System.IO.Compression (5)
System\IO\Compression\ZipBlocks.Async.cs (1)
170byte[] blockBytes = new byte[FieldLengths.Signature];
System\IO\Compression\ZipBlocks.cs (3)
663if (bytesRead != FieldLengths.Signature || !blockBytes.SequenceEqual(SignatureConstantBytes)) 669stream.Seek(FieldLocations.FilenameLength - FieldLengths.Signature, SeekOrigin.Current); 707Span<byte> blockBytes = stackalloc byte[FieldLengths.Signature];
System\IO\Compression\ZipBlocks.FieldLocations.cs (1)
62public const int VersionNeededToExtract = Signature + FieldLengths.Signature;