1 /* 2 Package storage is for metadata of a tar archive. 3 4 Packing and unpacking the Entries of the stream. The types of streams are 5 either segments of raw bytes (for the raw headers and various padding) and for 6 an entry marking a file payload. 7 8 The raw bytes are stored precisely in the packed (marshalled) Entry, whereas 9 the file payload marker include the name of the file, size, and crc64 checksum 10 (for basic file integrity). 11 */ 12 package storage 13