From 89b367941e12b1163afa517eeddca1b5ecd2a054 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sat, 4 Feb 2023 16:30:48 +0100 Subject: libtar: some minor cleanups - Use is_memory_zero from libutil - Move checksum update function to tar writer code - Move checksum verify function to tar reader code - Only export the function to compute the checksum Signed-off-by: David Oberhollenzer --- include/tar/format.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'include/tar') diff --git a/include/tar/format.h b/include/tar/format.h index 53a4665..c3e372d 100644 --- a/include/tar/format.h +++ b/include/tar/format.h @@ -94,9 +94,7 @@ int read_octal(const char *str, int digits, sqfs_u64 *out); int read_number(const char *str, int digits, sqfs_u64 *out); -void update_checksum(tar_header_t *hdr); - -bool is_checksum_valid(const tar_header_t *hdr); +unsigned int tar_compute_checksum(const tar_header_t *hdr); #ifdef __cplusplus } -- cgit v1.2.3