Skip to content

Commit

Permalink
fix: 使用MD5替换SHA-256算法
Browse files Browse the repository at this point in the history
  • Loading branch information
shulng committed Sep 28, 2024
1 parent 0131312 commit 354c545
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class CommunicationAuth {

static {
try {
messageDigest = MessageDigest.getInstance("SHA-256");
messageDigest = MessageDigest.getInstance("MD5");
} catch (NoSuchAlgorithmException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit 354c545

Please sign in to comment.