aboutsummaryrefslogtreecommitdiff
path: root/object/storer/packed/pack_idx_checksum.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-25 14:34:50 +0000
committerGravatar Runxi Yu2026-03-25 14:34:50 +0000
commite4a7aa0742f5070299d37e8421c99d67f0af3f90 (patch)
tree36d89781476a92e61280c5ff232a2773e4092c0e /object/storer/packed/pack_idx_checksum.go
parent*: delta -> packfile/delta (diff)
signatureNo signature
*: object/store -> object/storer v0.1.107
Diffstat (limited to 'object/storer/packed/pack_idx_checksum.go')
-rw-r--r--object/storer/packed/pack_idx_checksum.go34
1 files changed, 34 insertions, 0 deletions
diff --git a/object/storer/packed/pack_idx_checksum.go b/object/storer/packed/pack_idx_checksum.go
new file mode 100644
index 00000000..81fd75ec
--- /dev/null
+++ b/object/storer/packed/pack_idx_checksum.go
@@ -0,0 +1,34 @@
+package packed
+
+import (
+ "bytes"
+ "fmt"
+
+ objectid "codeberg.org/lindenii/furgit/object/id"
+)
+
+// verifyMappedPackMatchesMappedIdx compares one mapped pack trailer hash with
+// the pack hash recorded in one mapped idx trailer.
+func verifyMappedPackMatchesMappedIdx(packData, idxData []byte, algo objectid.Algorithm) error {
+ hashSize := algo.Size()
+ if hashSize <= 0 {
+ return objectid.ErrInvalidAlgorithm
+ }
+
+ if len(packData) < hashSize {
+ return fmt.Errorf("objectstorer/packed: pack too short for trailer hash")
+ }
+
+ if len(idxData) < hashSize*2 {
+ return fmt.Errorf("objectstorer/packed: idx too short for trailer hashes")
+ }
+
+ packTrailerHash := packData[len(packData)-hashSize:]
+
+ idxPackHash := idxData[len(idxData)-hashSize*2 : len(idxData)-hashSize]
+ if !bytes.Equal(packTrailerHash, idxPackHash) {
+ return fmt.Errorf("objectstorer/packed: pack hash does not match idx")
+ }
+
+ return nil
+}