File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1111 runs-on : ubuntu-latest
1212 name : Run python only unit tests
1313 steps :
14- - uses : SuffolkLITLab/ALActions/pythontests@main
14+ - uses : SuffolkLITLab/ALActions/pythontests@add_bandid_13
15+
Original file line number Diff line number Diff line change @@ -1714,7 +1714,7 @@ def update_session_metadata(
17141714
17151715 # 2) Derive two signed 32‑bit ints from MD5(session_id|filename|tags)
17161716 key_string = f"{ session_id } |{ filename } |{ metadata_key_name } "
1717- digest = hashlib .md5 (key_string .encode ("utf-8" )).digest ()
1717+ digest = hashlib .md5 (key_string .encode ("utf-8" ), usedforsecurity = False ).digest ()
17181718 high_u32 , low_u32 = struct .unpack (">II" , digest [:8 ])
17191719
17201720 def to_signed_32 (x : int ) -> int :
You can’t perform that action at this time.
0 commit comments