File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,3 +11,4 @@ Authors
1111* Andreas Rammhold - https://github.com/andir
1212* Nicholas Bunn - https://github.com/NicholasBunn
1313* Nathan McDougall - https://github.com/nathanjmcdougall
14+ * Oleksandr Zaiats - https://github.com/z4y4ts
Original file line number Diff line number Diff line change 99* Improve contribution experience for Windows developers using Just.
1010* Tweak Just commands for running version-specific Python tests.
1111* Remove `typing-extensions ` as a dependency.
12+ * Make package FIPS compatible by marking blake2 hashing with `usedforsecurity=False `.
1213
13143.14 (2025-12-10)
1415-----------------
Original file line number Diff line number Diff line change @@ -37,7 +37,9 @@ def make_data_file_name(
3737 # Use a hash algorithm with a limited size to avoid cache filenames that are too long
3838 # the filesystem, which can happen if there are more than a few root packages
3939 # being analyzed.
40- safe_unicode_identifier = hashlib .blake2b (bytes_identifier , digest_size = 20 ).hexdigest ()
40+ safe_unicode_identifier = hashlib .blake2b (
41+ bytes_identifier , digest_size = 20 , usedforsecurity = False
42+ ).hexdigest ()
4143 return f"{ safe_unicode_identifier } .data.json"
4244
4345 @classmethod
You can’t perform that action at this time.
0 commit comments