Home | History | Annotate | Download | only in gzip

Lines Matching refs:Gzip

5 // Package gzip implements reading and writing of gzip format compressed files,
7 package gzip
31 // ErrChecksum is returned when reading GZIP data that has an invalid checksum.
32 ErrChecksum = errors.New("gzip: invalid checksum")
33 // ErrHeader is returned when reading GZIP data that has an invalid header.
34 ErrHeader = errors.New("gzip: invalid header")
47 // The gzip file stores a header giving metadata about the compressed file.
51 // U+0001 through U+00FF, due to limitations of the GZIP file format.
61 // uncompressed data from a gzip-format compressed file.
63 // In general, a gzip file can be a concatenation of gzip files,
68 // Gzip files store a length and checksum of the uncompressed data.
122 // of gzipped files is treated as equivalent to the gzip of the concatenation
123 // of the sequence. This is standard behavior for gzip readers.
126 // can be useful when reading file formats that distinguish individual gzip
127 // data streams or mix gzip data streams with other data streams.
130 // it will be left positioned just after the gzip stream.
172 // readHeader reads the GZIP header according to section 2.3.1.
177 // A gzip file consists of a series of "members" (compressed data sets).
290 // In order for the GZIP checksum to be verified, the reader must be