mirror of
https://github.com/Ai-Thinker-Open/Ai-Thinker-Open_RTL8710BX_ALIOS_SDK.git
synced 2025-02-05 20:05:24 +00:00
13 lines
282 B
Python
13 lines
282 B
Python
|
import sys, hashlib
|
||
|
|
||
|
def MD5(bytes):
|
||
|
md5 = hashlib.md5()
|
||
|
md5.update(bytes)
|
||
|
return md5.hexdigest().decode('hex')
|
||
|
|
||
|
ota_bin = sys.argv[1]
|
||
|
|
||
|
with open(ota_bin, 'rb') as file:
|
||
|
ota_md5_bytes = MD5(file.read())
|
||
|
with open(ota_bin, 'ab') as file:
|
||
|
file.write(ota_md5_bytes)
|