aboutsummaryrefslogtreecommitdiff
path: root/gocryptfs-xray
diff options
context:
space:
mode:
Diffstat (limited to 'gocryptfs-xray')
-rw-r--r--gocryptfs-xray/xray_main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/gocryptfs-xray/xray_main.go b/gocryptfs-xray/xray_main.go
index 8ebed8e..d58f1a6 100644
--- a/gocryptfs-xray/xray_main.go
+++ b/gocryptfs-xray/xray_main.go
@@ -80,6 +80,7 @@ func main() {
} else if err != nil {
errExit(err)
}
- fmt.Printf("Block %2d: IV: %s, Tag: %s, Len: %d\n", i, hex.EncodeToString(iv), hex.EncodeToString(tag), blockLen)
+ fmt.Printf("Block %2d: IV: %s, Tag: %s, Offset: %5d Len: %d\n",
+ i, hex.EncodeToString(iv), hex.EncodeToString(tag), off, blockLen)
}
}