mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f2614f2107
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
12 lines
444 B
Go
12 lines
444 B
Go
/*
|
|
Package storage is for metadata of a tar archive.
|
|
|
|
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.
|
|
|
|
The raw bytes are stored precisely in the packed (marshalled) Entry, whereas
|
|
the file payload marker include the name of the file, size, and crc64 checksum
|
|
(for basic file integrity).
|
|
*/
|
|
package storage
|