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