Closed HTHou closed 2 weeks ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 63.63%. Comparing base (
6c4f911
) to head (ad1a4b0
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Fixes https://github.com/apache/tsfile/security/code-scanning/7
To fix the problem, we should replace the use of the MD5 algorithm with a stronger, modern cryptographic hash function such as SHA-256. This change will enhance the security of the cryptographic operations performed by the code.
MessageDigest.getInstance("MD5")
withMessageDigest.getInstance("SHA-256")
.Suggested fixes powered by Copilot Autofix. Review carefully before merging.