1
0
Fork 1
mirror of https://github.com/vbatts/tar-split.git synced 2024-11-15 04:58:36 +00:00
tar-split/tar/storage/doc.go

13 lines
444 B
Go
Raw Normal View History

2015-03-09 17:13:04 +00:00
/*
2015-03-09 18:11:11 +00:00
Package storage is for metadata of a tar archive.
2015-03-09 17:13:04 +00: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.
The raw bytes are stored precisely in the packed (marshalled) Entry, whereas
2015-03-09 17:13:04 +00:00
the file payload marker include the name of the file, size, and crc64 checksum
(for basic file integrity).
*/
package storage