SHA256
1
0

fix misaligned bit

This commit is contained in:
brent saner
2025-09-03 01:37:56 -04:00
parent 4965aff6f8
commit a960018b7e
2 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ var (
vtfTOffset uint32 = 0x00000014 // 20
vtfTFlagMask uint32 = 0x000000ff // mask to 8 bits
vtfFlowMask uint32 = 0x0000ffff
vtfFlowMask uint32 = 0x000fffff // 1048575
)
func ToVTF(ver, tc, flow uint32) (vtf uint32) {