Skip to content

Commit

Permalink
HMAC: don't write protect, i don't want to break more stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Skyler84 committed May 30, 2024
1 parent de23a57 commit 08e6e2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion burn_mac.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Args:
args.name_value_pairs[f"KEY_PURPOSE_{key_to_use}"] = 8
args.name_value_pairs[f"BLOCK_KEY{key_to_use}"] = HMAC_KEY
args.name_value_pairs[f"RD_DIS"] = (1<<(key_to_use))
args.name_value_pairs[f"WR_DIS"] = (1<<(23+key_to_use))
# args.name_value_pairs[f"WR_DIS"] = (1<<(23+key_to_use))
print(operations.burn_efuse)
operations.burn_efuse(esp, efuses, args)

Expand Down

0 comments on commit 08e6e2f

Please sign in to comment.