#!/usr/bin/env python3 # -*- coding: utf-8 -*- # Many thanks to Alex W. who figured this out! """ Calculates the SHA1 of a fw_all.bin until the ending marker. """ from hashlib import sha1 from struct import unpack from grmn import devices import sys FILE = sys.argv[1] BLOCKSIZE = 4096 END_MARKER = b"\xff\xff\x5a\xa5\xff\xff\xff\xff" first_block = True past_end = False trailer = bytes() trailer_pos = -1 csum = sha1() print("Reading {} ...".format(FILE)) with open(FILE, "rb") as f: while True: block = f.read(BLOCKSIZE) if first_block: start = block.find(b"\xff\xff\xff\xff\xf0\xb9\x9d\x38\x0f\x46\x62\xc7") if start < 0: print("No Fenix firmware header found.") else: start += 4 hwid = unpack("