2015-03-09 13:13:04 -04:00
|
|
|
/*
|
2015-03-09 14:11:11 -04:00
|
|
|
Package storage is for metadata of a tar archive.
|
2015-03-09 13:13:04 -04:00
|
|
|
|
|
|
|
Packing and unpacking the Entries of the stream. The types of streams are
|
|
|
|
either segments of raw bytes (for the raw headers and various padding) and for
|
|
|
|
an entry marking a file payload.
|
|
|
|
|
2015-06-23 13:13:29 -07:00
|
|
|
The raw bytes are stored precisely in the packed (marshalled) Entry, whereas
|
2015-03-09 13:13:04 -04:00
|
|
|
the file payload marker include the name of the file, size, and crc64 checksum
|
|
|
|
(for basic file integrity).
|
|
|
|
*/
|
|
|
|
package storage
|